php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #25548 mysql_fetch_assoc produces wrong data.
Submitted: 2003-09-15 15:58 UTC Modified: 2003-09-16 09:48 UTC
From: lazybrain at rcn dot com Assigned:
Status: Not a bug Package: MySQL related
PHP Version: 4.3.3 OS: freebsd 4.8-RELEASE-p3
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
31 - 21 = ?
Subscribe to this entry?

 
 [2003-09-15 15:58 UTC] lazybrain at rcn dot com
Description:
------------
mysql_fetch_assoc somehow caches results.

Reproduce code:
---------------
$results = mysql_query("select id,datein,dateout,rnumber from repairrecords limit 1800,100");

echo "<table align=center><form action=fixdate.php method=post>";

while($tmp = mysql_fetch_assoc($results) ) {

 <tr>
   <td>
    $tmp[id]    <input type=hidden name=\"cpid$x\" value=\"$tmp[pid]\">
   <input type=hidden name=\"cid$x\" value=\"$tmp[id]\">
    <input type=hidden name=\"crnumber$x\" value=\"$tmp[rnumber]\">
   </td>
   <td><input type=text name=\"datein$x\" value=\"".$tmp['datein']."\"></td>
   <td><input type=text name=\"dateout$x\" value=\"".$tmp['dateout']."\"> ($tmp[rnumber])</td>
  </tr>

}

Expected result:
----------------
when you change limit in the query from 1800,100 to 1900,100
It gives you the last 100 results.  

HOWEVER, if you do print_r($tmp) inside of the while loop it works.  This does not happen every time.  When it does happen, 
it continues to give the wrong results. Makes no sense to me.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-09-16 09:48 UTC] georg@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

.. 
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 19:01:28 2024 UTC