Hi all,
I use dbm files to save data in tables. All works fine, but there is a problem that bugs me ...
When I delete a key from the dbm file using
dbmdelete($db,$mykey);
the key is gone and the data disppeared. That's what I wanted, but when I open the dbmfile with a hexeditor and search the file for the key that I just deleted, the key is still present, and all the corresponding data too.
So I can delete keys, but they remain in the file and file gets bigger and bigger ...
Did I make something wrong here ? I thought maybe I forgot some cleanup, or PHP has an internal cleanup that does not work properly.
Any hints appreciated
Frank.