You should be able to do something like:
Select col1, col2, col3 from myTable
where myDateEntered > '2004-02-25 17:09:26'
to get out just the records entered in the past hour.
You can probably build a variable to use by using just the date() function. But, you may need to use the mktime() function as well. The following code has not been tested:
$date = date("Y-m-d H:i:s",time() - 3600);
$sql = "Select col1, col2, col3 from myTable where myDateEntered > '$date'";
http://us2.php.net/manual/en/function.date.php
http://us2.php.net/manual/en/function.mktime.php