Quote:
Originally Posted by vuiveclub
Hello, thank you for your answering.
But I need to use with this,
PHP Code:
while($mypage = $vbulletin->db->fetch_array($mypages)) { $mypage['field1'] = $mypage[field1];
eval('$mytemp .= "' . fetch_template('mytemp') . '";'); }
|
you dont need to assign it again as its already stored in the array you are fetching...
PHP Code:
while($mypage = $vbulletin->db->fetch_array($mypages))
{
eval('$mytemp .= "' . fetch_template('mytemp') . '";');
}