Quote:
Originally Posted by nothing4me
Is there any way to make $WQ_ variables forum global? 
(Like, be able to use it in VBulletin templates in areas such as the header or footer.)
Edit: Thanks for answering my other question, but I found it and deleted the post before you replied. 
|
You can't do it with webtemplates.
However adding such a code in a hook like "global_setup_complete" as a vb pluggin can help:
PHP Code:
$myspecialcode = $db->query_first("SELECT COUNT(*) as count FROM accounts");
Now you can use $myspecialcode[count] variable in many templates in the entire vb.