in reply to Linux server doesn't like me
Your error, that exist in most print that you make, is the qq(...), that uses () for quotes, but you use the () inside the text to be printed too. Use something like that for big print:
print qq` <html> ... </html> ` ; ## or print <<HTMLDATA; <html> ... </html> HTMLDATA exit ;
End you forgot some } to close some sub too! Before send the script to server make a check syntax:
perl -c script.pl
If you use Windows, get Perl from ActiveState.com
Graciliano M. P.
"The creativity is the expression of the liberty".
|
|---|