while ($row = mysql_fetch_array($exc))
I've been using this for looping through SQL result from the beginning but never really gave it much thought on what it exactly does.
Now that I have to create something where I have to keep performance in mind I am wondering on what it exactly does.
1) Put the result into array $row just one time and then loop through the array
2) Put one row of the result into $row and with each loop read the fetch next row
3) something else?