in my database table ive got
id | date | time | data1 | data2 | data4
1 |2001-11-25|14:00|xxx| xxx|xxx
I collect the data ..
$res=mysql_query("SELECT * FROM tablename WHERE date >= '" . Date("Y-m-d") . "' ORDER BY date DESC LIMIT 1");
$rad = mysql_fetch_array($res);
i would like to show the next row after its gone 3 hours at this example at 17:00 so i dont have to wait til next day.. how ?