MyBB Community Forums

Full Version: Add a global variable to mybb?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I do not know how to go about this, usually using global variables isn't good.

I want to add some so I can count how many times a link is clicked and then make a page that lists the stats of links clicked.

$global $GlobalVar;

echo "<a href='' onclick='$GlobalVar = $GlobalVar + 1;'>Link</a>";

Using the PHP in Templates plugin...


I know you can do this with the database...but atm I'm not really good with queries. I have some one who can help me with that later though.
onClick is Javascript and PHP is serverside. i don't think this will work the way you have it.