View Single Post
09-30-2009, 08:14 PM
#3
Patrick is offline Patrick
Status: I love this place
Join date: Apr 2007
Location: Chi-Town
Expertise: Java/C#/C++ Programmer
Software:
 
Posts: 543
iTrader: 5 / 100%
 

Patrick is an unknown quantity at this point

  Old

Change:

Code:
$result = mysql_query($sql, $connection);
To:

Code:
$res = mysql_query($sql, $connection);
And:

Code:
while ($myRow = mysql_fetch_array($result)) {
To:

Code:
while ($myRow = mysql_fetch_array($res)) {

Reply With Quote