I've already queryed my data from the mysql databases and put it into $result
now i'm making it an array.
But when I started really looking at this code(I've used it before), I started thinking, why isn't this while loop infinite? I don't know if i just forgot to take my stupid pills for today, but i've been programming in php for a while now, and just want to know.... :o
while ( $row = mysql_fetch_array($result, MYSQL_ASSOC) ) {
foreach ($row as $col) {
//do something
}
}