View Full Version : Foreach Loop & Templates
Hi
I've been reading around and looking for solution on how i can actually print out a full list of table information using the existing vBulletin infrastructure.
Today i've been successfully able to retrieve information from database in any *.php file then save as a variable $test, & print it out seperately with the variable on the template ($test).
but now ive got a problem where i need to print out an entire table of information, how can i go about doing this? please assist!
Hopefully this is all the advice you need. If you need more help reply and someone will get to this I'm sure. :)
// Example array...
$array = array('first', 'second', 'third', 'fourth');
foreach ($array AS $value)
{
// $value is the current array item we're looking at, make sure it's in the template below
// Note the .= in the below, this means "append this at the end of '$var'" meaning data already in $var will not be overwritten
eval('$var .= "' . fetch_template('your_custom_template') . '";');
}
Hopefully this is all the advice you need. If you need more help reply and someone will get to this I'm sure. :)
// Example array...
$array = array('first', 'second', 'third', 'fourth');
foreach ($array AS $value)
{
// $value is the current array item we're looking at, make sure it's in the template below
// Note the .= in the below, this means "append this at the end of '$var'" meaning data already in $var will not be overwritten
eval('$var .= "' . fetch_template('your_custom_template') . '";');
}
Hi brad, this looks good. but this is going to result in templates in a template for my site. is this perfectly normal?
Hi brad, this looks good. but this is going to result in templates in a template for my site. is this perfectly normal?
Yes it's normal, vBulletin does it in many places.
When you need a template in a loop there is little else you can do. :)
Yes it's normal, vBulletin does it in many places.
When you need a template in a loop there is little else you can do. :)
ah. now everything makes sense.
okay.
lemme work things out from here. you've been very helpful! how can i reeturn the favour?
ah. now everything makes sense.
okay.
lemme work things out from here. you've been very helpful! how can i reeturn the favour?
No need to return the favor! :)
But if you'd like...answer someone elses question if you know the answer. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.