Based on your code, here is my "Newest Additions"
PHP Code:
if ($_GET['latest'] == "true")
{
define('LATEST', 'true');
// Selects latest
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games AS l
ORDER BY gameid DESC LIMIT 5
");
$navbits = array("arcade.php?$session[sessionurl]" => "Arcade");
$navbits[""] = "Last 5 Games Added";
} else {
// and of course the closing
}
// before
$gamecount = $DB_site->num_rows($result_allgames);