PDA

View Full Version : One records returns when using hook


stryka
08-15-2006, 12:43 PM
I use the following

$info = $db->query_read("
SELECT testid
FROM test");
while ($info_rec= $db->fetch_array($info))
{
$testid;
//var_dump($attachment);
//exit;
eval('$postbit_test = "' . fetch_template('postbit_test') . '";');
$debug=2;
}


HOwever, only one record shows...

AN-net
08-15-2006, 02:34 PM
this line:

eval('$postbit_test = "' . fetch_template('postbit_test') . '";');


should be this:

eval('$postbit_test .= "' . fetch_template('postbit_test') . '";');

stryka
08-15-2006, 02:40 PM
Damn... rookie move... thanks for the response though... just took anohter pair of eyes...

this line:

eval('$postbit_test = "' . fetch_template('postbit_test') . '";');


should be this:

eval('$postbit_test .= "' . fetch_template('postbit_test') . '";');

AN-net
08-16-2006, 02:32 PM
i used to do the same all the time:)