i have 88 queries on my arcade page.
if i change this:
PHP Code:
$miniboard_q = $DB_site->query("SELECT * FROM arcadescores WHERE game='$gamename' AND valid=1 ORDER BY score DESC LIMIT 5");
to this:
PHP Code:
$miniboard_q = $DB_site->query("SELECT * FROM arcadescores WHERE game='$gamename' AND valid=1 ORDER BY score DESC LIMIT 3");
will that lower the number of queries on the arcade?