in reply to Another Simple Message Board

When I ran it, it gave me error on line 23.

$value =~ s/+/ /;

+ is just a quantifier, what is the object being quantified? I guess you mean:

$value =~ s/\s+/ /g;

BTW, as you used the CGI module, why didn't you use CGI functions to generate html tags like "form"? try to use those functions to reduce malformated tags.

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.