PHP Code:
while ($array = mysql_fetch_assoc($result)) {
print "$array['row'] $array['otherrow'] $array['etc']";
}
You can actually use this for the same effect as the mysql_fetch_array with MYSQL_ASSOC as the parameter. That's what I'm using in a script I'm writing for my church's web site...