This repository has been archived on 2025-07-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
open-heraklion-bus/Lines.php

42 lines
710 B
PHP
Raw Normal View History

2016-02-18 08:56:43 +02:00
<!DOCTYPE html>
<html>
<head>
2016-02-21 16:19:06 +02:00
<title>OpenHB - Lines</title>
2016-02-18 08:56:43 +02:00
<?php include 'modules/head.php'; ?>
</head>
<body>
<?php include 'modules/nav.php'; ?>
<h1>Lines</h1>
2016-02-18 09:05:01 +02:00
<p>This is a table of all the unique line numbers.Click on a line number
2016-02-18 08:56:43 +02:00
to see a list of routes that have this line number</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Line #</th>
</tr>
</thead>
<tbody>
<?php
include 'modules/libdata.php';
foreach (getLines() as $line){
echo '<tr>';
echo '<td><a href="ShowLine.php?line=' . $line . '">' . $line . '</a></td>';
echo '</tr>';
}
?>
</tbody>
</table>
<?php include 'modules/foot.php'; ?>
</body>
</html