in reply to perl dbm problem
Presumably, two different people will not enter different names, comments, etc, using the same email address -- if they do, the one who comes in later will overwrite the one who came in earlier.$BOOK{$email} = join "\t", $name, $comments, $postime;
This way, when you get the keys from the dbm file, it will be the list of email addresses for people who have signed in; for each key, you can then fetch the name, comments, etc.
|
|---|