|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-12-04 12:16 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 08:00:02 2025 UTC |
I'm having the OPPOSITE problem as the other bug! Weird... <?php echo dblist()."<br><br>"; $dbm_id = dbmopen ("lastseen", "n"); dbmreplace($dbm_id,"a","123456789"); dbmreplace($dbm_id,"b","123456789"); dbmreplace($dbm_id,"c","123456789"); echo "[".dbmfetch($dbm_id,"a")."]<br>"; echo "[".dbmfetch($dbm_id,"b")."]<br>"; echo "[".dbmfetch($dbm_id,"c")."]<br>"; dbmreplace($dbm_id,"a","1234567890"); dbmreplace($dbm_id,"b","1234567890"); dbmreplace($dbm_id,"c","1234567890"); echo "[".dbmfetch($dbm_id,"a")."]<br>"; echo "[".dbmfetch($dbm_id,"b")."]<br>"; echo "[".dbmfetch($dbm_id,"c")."]<br>"; dbmclose ($dbm_id); ?>