ShowRoute
There are two tables below that list the bus stops of a route; one for each
direction. Click on a bus stop's name to see a list of routes that visit it
and view its position on a map.
' . $route['line'] . ' - ' . $route['name'] . '
';
PrintStops($route,'go');
PrintStops($route,'come');
} else {
echo 'No such route. Go back?';
}
function PrintStops($rt,$dir){
echo '';
echo 'Stop # | Stop Name | ';
echo '
';
foreach ($rt['stops'][$dir] as $stp){
$stop = getStopInfo($stp);
echo '' . $stop['id'] . ' | ';
echo '' . $stop['name'] . ' |
';
}
echo '
';
}
?>