From e23bb22ea2680eb66d82f88bab44b09269da7b1f Mon Sep 17 00:00:00 2001 From: George Kaklamanos Date: Sun, 19 Jul 2015 13:18:27 +0300 Subject: [PATCH] Seperated content in tabs --- ShowStop.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ShowStop.php b/ShowStop.php index 2e5a5cc..7b93ff1 100644 --- a/ShowStop.php +++ b/ShowStop.php @@ -15,15 +15,22 @@ position of the bus on the map. The other table shows upcoming arrivals. There is also a map showing the location of the requested stop.

-

' . $stop['id'] . ' - ' . $stop['name'] . '

'; + echo '

Stop ' . $stop['id'] . ' - ' . $stop['name'] . '

'; + echo ''; + echo '
'; + echo '
'; PrintRoutes($_GET["stop"]); + echo '
'; ShowMap($stop['lat'],$stop['lon']); + echo '
'; } else { echo 'No such stop. Go back?'; }