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/Routes.php
2015-07-16 14:51:11 +03:00

44 lines
904 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>uBus - Routes</title>
<?php include 'head.php'; ?>
</head>
<body>
<?php include 'nav.php'; ?>
<h1>Routes</h1>
<p>This is a table of all the routes. Click on a route's name to see a list of
its bus stops and the position of the bus on the map. Click on a line number
to see a list of routes that have this line number</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Line #</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<?php
include 'libdata.php';
foreach ($routes as $route){
echo '<tr>';
echo '<td><a href="ShowLine.php?line=' . $route['line'] . '">' . $route['line'] . '</a></td>';
echo '<td><a href="ShowRoute.php?route=' . $route['id'] . '">' . $route['name'] . '</a></td>';
echo '</tr>';
}
?>
</tbody>
</table>
<?php include 'foot.php'; ?>
</body>
</html