Timothy Kimball wrote:

> Luinrandir Hernson wrote:
> : This line of code in a perl script comes up with errors.
> : ...
> : print "<Input type=\"button\" Value=\"Print This Page\" 
>onClick=\"parent.main.print()\">\n;
>
> Needs a closing quote after the \n. -- tdk

I'm jumping into the middle of a thread here, but for readability
why not try something like:

print qq|<Input type="button" Value="Print This Page" 
onClick="parent.main.print()">\n|;

And make use of perl's quoting facilities? It's much cleaner and
won't give you a headache when you read it.

--
Perl, because 600 billion oysters can't be wrong
   Canadian Consulting Services' pet perl hacker
   David Labatte [EMAIL PROTECTED]



Reply via email to