Am currently using the following construct to display the results:
Code: Select all
while ($row = mysql_fetch_array($result)) {
echo $row['fname'];
}Moderator: General Moderators
Code: Select all
while ($row = mysql_fetch_array($result)) {
echo $row['fname'];
}