Code:
print_r($row);while($row=mysql_fetch_array($result)){
print_r($row);
My first print returns what I want, $row[0] but once it enters the while loop it jumps to $row[1] meaning it doesn't display row[0]. I've tried using prev() and reset() but neither work.
How can I stop it from skipping when it enters the loop?
Thanks,
S.


