> Hi all,
Howdy
>
> I need to print out a whole bunch of HTML in my cgi script.
> How can I print things out with out escaping all the
> necessary symbols ??
>
Use single quotes, use qq(), q(), qx() etc
Use here documents (you still have to escape @ signs though)
print <<HTML;
my html here
HTML
Or use CGI.pm to creta the html for you
Check out perldoc and cpan for how to use someof these things
HTH
Dan
>
> Mark G
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]