From: [EMAIL PROTECTED] Operating system: NT 4.0 PHP version: 4.0.6 PHP Bug Type: DBM/DBA related Bug description: dbm insert and replace functions inserting incorrect values. The dbminsert and dbmreplace functions insert erroneous values into the database. Here is a short script that should identify the problem: <?php $dbm = dbmopen("test.db", "n"); for ($c=0; $c < 100; $c++) { dbminsert($dbm, $c, $c); } for ($c=0; $c < 100; $c++) { echo(dbmfetch($dbm, $c) . "<br>"); } dbmclose ($dbm); ?> This is what I get for the first 11 lines of output: 1 1 1 1 1 1 1 1 1 2 10 The remaining output is correct. I am using the precompiled win32 binary with iPlanet on NT. If you could send any replies to this email address as well as the other one listed I would appreciate it: [EMAIL PROTECTED] -- Edit bug report at: http://bugs.php.net/?id=12020&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]