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?
$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?