> Lee Goddard typed (on 26th of June):
> > Of the two, I prefer the former, as it's
> > easy to read and hence to maintain.  In
> > fact, I'd make it clear by 
> > 
> > $html.=<<"__END_OF_HTML__";
> > 
> > Put it $here
> > like so....
> > 
> > __END_OF_HTML__
> 
> I personally prefer
>  print qq|<html>$tag</html>|;
> format as then I don't have to worry about anything auto-indenting
> my lines by adding spaces and breaking the _HERE_ system.

I use q|| a lot too. If I feel like living dangerous I'll do:

 print <<"":
  <table>
   <tr>
    <td>Hello</td>
   </tr>
  </table>

print 'world';

_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to