First try the other suggestions in faq452-3023
Theres a handy little trick for situations like this.
Get rid of the content-type:text/html line, and put the following at the start of your script:
#!/usr/bin/perl
BEGIN
{
print "Content-type: text/html \n\n";
}
my @code =...
Theres a handy little trick for situations like this.
Get rid of the content-type:text/html line, and put the following at the start of your script:
#!/usr/bin/perl
BEGIN
{
print "Content-type: text/html \n\n";
}
my @code = ( <DATA> );
my $code = join "\n",@code...
Hmm, I don't seem to be able to download your code from the showperl script, however, as general practise, it could be an idea when processing form values to 'clean them' through a hash first - as an example, try inserting these lines into line 11 ( just after the get_form statement ) of...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.