Hopefully this is all the advice you need. If you need more help reply and someone will get to this I'm sure.
PHP Code:
// 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') . '";');
}