More between points work + mobile UI work:
[bus.git] / busui / stopList.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
include('common.inc.php');
include_header("Stops");
echo '  <ul data-role="listview" data-filter="true">';
$url = $APIurl."/json/stops";
if ($_REQUEST['lat'] && $_REQUEST['lon']) $url = $APIurl."/json/neareststops?lat={$_REQUEST['lat']}&lon={$_REQUEST['lon']}&limit=15";
$contents = json_decode(getPage($url));
foreach ($contents as $key => $row) {
    $stopName[$key]  = $row[1];
}
 
// Sort the data with volume descending, edition ascending
// Add $data as the last parameter, to sort by the common key
array_multisort($stopName, SORT_ASC, $contents);
 
foreach ($contents as $row)
{
 
      echo  '<li><a href="stop.php?stopid='.$row[0].'">'.$row[1].'</a></li>';
        }
echo '</ul>';
/*
 <div data-role="footer" data-id="foo1" data-position="fixed"> 
                <div data-role="navbar"> 
                        <ul> 
                                <li><a href="footer-persist-a.html" class="ui-btn-active">Friends</a></li> 
                                <li><a href="footer-persist-b.html">Albums</a></li> 
                                <li><a href="footer-persist-c.html">Emails</a></li> 
                        </ul> 
                </div><!-- /navbar -->
*/
include_footer();
?>