in reply to Another Simple Message Board
will only make your filehandle available for appending to the end of a file. Changing it to "+>>message.txt", will make it available for reading as well. I don't know that your seek is of any use, or why it is there (been a long time since I have used it and so i might be mistaken).open(FH,">>message.txt")
apart from that:
should be$value =~ s/+/ /;
as + is special in a regular expression.$value =~ s/\+/ /;
Update:changed the second bit (i.e. s/\+~/=~/; Thanks Chady++
-enlil
|
|---|