Log in

View Full Version : Custom Coded Page into Template


AreaZeroOne
01-25-2008, 02:53 AM
Hi.

I'm making a custom vB page and I need to grab about 25 results from the database (not the vbulletin database) that will be displayed there (php/mysql). I'm using a while loop to grab the data. The problem is, I have absolutely no idea how to send that info into the vbulletin template.

I can assign data to variables (like $a = 1) but I don't know how to assign the array along with executing the html properly in the vB template. Help!

MoT3rror
01-25-2008, 03:07 AM
$results = $db->query_read("SELECT * FROM table");

while($row = $db->fetch_array($results))
{
eval('$data =. "' . fetch_template('template_name') . '";');
}
Then $data will contain html that is sent through the loop.

AreaZeroOne
01-25-2008, 03:13 AM
I went searching for another while loop and forumdisplay had one. I saw the eval() statement and it all clicked :D Man is it much easier once things are clearly understood.

Thanks for the help, appreciate it!

Adrian Schneider
01-25-2008, 04:06 AM
Make sure to flip around the period and equals sign in the eval call.

$results = $db->query_read("SELECT * FROM table");

$data = '';

while ($row = $db->fetch_array($results))
{
eval('$data .= "' . fetch_template('template_name') . '";');
}