Quote:
Originally Posted by kh99
If topbuyers.php is in your forum directory, you could just include it instead of using curl, like:
Code:
ob_start();
include('topbuyers.php');
$topbuyers = ob_get_contents();
ob_end_clean();
I looked at the link to topbuyers.php, and if that's the entire file I don't understand how it would work since it seems to depend on a pre-existing $database variable.
In any case, you also need to register your variable to the template, like this:
Code:
vB_Template::preRegister('template_name', array('topbuyers' => $topbuyers));
|
The
$database variable is already created on vBulletin startup.
This seems to have worked. Didn't know about registering the variables.
Thank you! Very much appreciated.