I am having trouble with "date".
Thanks for looking!
I will give kudos on our site for any help,
and or a paypal tip.
------./a/marks_bb2b.php-----------
Thanks for looking!
I will give kudos on our site for any help,
and or a paypal tip.
Code:
http://www.wikispeedia.org/a/marks_bb2b.php?since=2013-11-11
Code:
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("content-type:text/xml");
include("../dbconnect.php");
$since=$_GET['since'];
echo "<markers>";
$query = " SELECT * from signs4 where submittedOn >= $since LIMIT 63";
$results = mysql_query($query);
while ($row=mysql_fetch_array($results)){
echo '<marker label="'.$row[0].'" lat="'.$row[1].'" lng="'.$row[2].'" mph="'.$row[3].'" kph="'.$row[4].'
" cog="'.$row[5].'" submittedOn="'.$row[6].'" deletedOn="'.$row[7].'" />';}
echo "</markers>";
?>
Comment