I'm trying out this code to output all users last post dates. But when I exectue it it doesnt ouput a thing. What am I doing wrong?
PHP Code:
<html>
<body>
<?php
require_once('./global.php');
error_reporting(E_ALL & ~E_NOTICE);
$users = $DB_site->query("SELECT * FROM user");
while($user =$DB_site->fetch_array($users)) {
$lastpost = vbdate($dateformat, $user['lastpost']);
echo "$lastpost<br />";
}
?>
</body>
</html>