Hi,

On Fri, 13 Jul 2001, Thomas Jakub wrote:

> what about print "<img src=\"image.gif\">"; ?
> would that piece of code work?

Yes, that works, but escaping characters can get very ugly on screen.
 
Another option is the qq operator:

print qq(<img src="foo.gif" width="11" height="20" alt="Yo" border="0">);

For long bits of HTML, I prefer the here doc method mentioned in other
posts.

Lisa Wolfisch Nyman  <[EMAIL PROTECTED]>  IT Warrior Princess
"Life is too short to wear ugly underwear."
Get the facts at http://quickfacts.census.gov/


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to