
10-26-2004, 08:26 AM
|
|
|
Join Date: Oct 2004
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Colin F
that's a php problem.
You keep overwriting you $resources variable.
Try exchanging this:
PHP Code:
eval('$resources = "' . fetch_template('index_resourcedata') . '";');
with this:
PHP Code:
eval('$resources .= "' . fetch_template('index_resourcedata') . '";');
|
Thanks much  , worked like a charm!
|