More between points work + mobile UI work:
[bus.git] / busui / stopList.php
blob:a/busui/stopList.php -> blob:b/busui/stopList.php
<div id="get"> <?php
<div class="toolbar"> include('common.inc.php');
<h1>GET Example</h1> include_header("Stops");
<a class="back" href="#">AJAX</a> echo ' <ul data-role="listview" data-filter="true">';
</div> $url = $APIurl."/json/stops";
<div class="info"> if ($_REQUEST['lat'] && $_REQUEST['lon']) $url = $APIurl."/json/neareststops?lat={$_REQUEST['lat']}&lon={$_REQUEST['lon']}&limit=15";
This page was loaded via AJAX. $contents = json_decode(getPage($url));
</div> foreach ($contents as $key => $row) {
<ul class="rounded"> $stopName[$key] = $row[1];
<li><a href="#livetest">Test live events</a></li> }
</ul>  
</div>  
<div id="livetest">  
<div class="toolbar">  
<h1>Events test</h1>  
<a class="back" href="#">AJAX</a>  
<a class="button goback" href="#home">Home</a>  
</div>  
<div class="info">  
This is a test of live events.  
</div>  
</div>  
   
  // 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();
  ?>