Hi all, I am attempting to create a php file that displays my forum stats, to use as an include in a wordpress themplate.
So far I have the following code, saved as a file in my forum root directory:
Code:
<?php
require_once('./global.php');
echo {vb:raw numbermembers};
?>
I know it's the echo line that's causing a problem, the thing is I'm new to php so don't really know how this should be formatted.
Can anyone help?