PDA

View Full Version : how do i: SELECT all posts from the past 6 hours?


sabret00the
04-27-2005, 12:19 PM
i thought it would be something simple like

$lastpost = $DB_site->query_first("
SELECT COUNT(*)
FROM post
WHERE dateline > 6hours
");

ok for the six hours i thought would i be able to just do something like

$sixhours = ceil(6 * 4600);

$lastpost = $DB_site->query_first("
SELECT COUNT(*)
FROM post
WHERE dateline > $sixhours
");

can i do that?

Marco van Herwaarden
04-27-2005, 12:24 PM
*sigh* :D

Try with a:
WHERE dateline > " . (TIMENOW - (6 * 3600)) . "

noppid
04-27-2005, 12:55 PM
*sigh* :D




hehe, you're alright. :)

sabret00the
04-27-2005, 12:58 PM
lol thanks marco :)