Hey,
I want to include a php file which generates a list (
/Forum/statsinner.php) at the bottom of a custom vbulletin page (
/Forum/database5yr.php).
To do this I have added an includephp plugin (in global start):
Code:
ob_start();
include('/Forum/statsinner.php');
$includedphp = ob_get_contents();
ob_end_clean();
and then added {vb:raw includedphp} to my custom pages template. (I have also tried global.includedphp)
However - this doesn't seem to be working. Have I done something crazy here? This has really got me stumped, any help would be very much appreciated.