Ron Grabowski <[EMAIL PROTECTED]> wrote:

> Yep. My understanding was that the OP wanted something like
> this:
> 
> $Response->Write(<<EOT);
> 
> honest-to-goodness heredoc
> $Request->Form('city')->{Item}
> 
> EOT
> 
> Which is not possible.

True, but it's also not possible with qq().  That is, this 
doesn't work either:

    $Response->Write(qq|

    poor man's heredoc
    $Request->Form('city')->{Item}

    |);

My point was that introducing qq() in place of the here-doc 
seemed to be confusing the issue.

-- 
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to