->
while($row = $feed->result->fetch_assoc())
rusdvl:
I'd move the actual fetch into the class so you wrap the nature of
the db more completely...
that why only one result displayed.
should do like this:
$feedback = '';
while($row = mysql_fetch_assoc($result))
{
$feedback .= '<p>'.$row['feedback'].'<br />'."\n"; //
there is a dot before =
$feedback .= '<i>'.$row['participant'].'</i></p>'."\n";
}
regards.
anru
Andrew
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 3385 (20080825) __________
The message was checked by ESET NOD32 Antivirus.
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 3385 (20080825) __________
The message was checked by ESET NOD32 Antivirus.