Quote:
Originally Posted by Sparky1000
Hi KH99 it was my mistake i miss types the template at the bottom! (i edited that post 2 minutes before you posted)
vB_Template:  reRegister('mytemplate',array('filer ows' => $filerows));
ALSO
just for my sanity it is the DOT EQUALS that explodes it into recursive rows?
And why did you empty the filesrow'' on the third row.
Thanks very much for your help
|
This:
PHP Code:
$variable1 .= $variable2;
is shorthand for:
PHP Code:
$variable1 = $variable1 . $variable2;
So this way we are concatenating strings rather than resetting it each time with just "=".