PHP Code:
global $DB_site;
if(!isset($threads[$post[userid]])) {
$threads[$post[userid]] = $DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE postuserid='$post[userid]'");
}
$post[threads] = $threads[$post[userid]['threads'];
$post[replies] = $post[posts] - $post[threads];
As you can see i have tried it with and without global.
Still getting a parse error.
Not a big deal, just wanted you to know
Cheers