|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-06-18 11:53 UTC] sas at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 11:00:02 2025 UTC |
Script that worked fine in 3.0.6 had me panicking this morning! Upgraded to 3.0.8 compiled using egcs (seems a lot faster), Apache 1.3.6 Example: $row=mysql_fetch_row($result); while ($field=mysql_fetch_field($result)) { print $field->name; #do stuff } This gives no output (Doesn't go into the while loop) where it did before. ommiting the first line everything works fine (unless you need to use $row..) I'm not certain if this is a bug or correct behaviour.