printing html symbols

2003-07-23 Thread mgoland
Hi all, 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 ?? Mark G -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: printing html symbols

2003-07-23 Thread Dan Muey
> 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 < > Mark G > > >

Re: RE: printing html symbols

2003-07-24 Thread mgoland
Thanks Dan, how would I go about printing a string like: " Board # Color #model #Serial # " - Original Message - From: Dan Muey <[EMAIL PROTECTED]> Date: Wednesday, July 23, 2003 10:21 am Subject: RE: printing html symbols > > > Hi all, > > Howdy &g

RE: RE: printing html symbols

2003-07-24 Thread Dan Muey
was mnore I'd use a here doc: print <Board # Color # colspan="2">model #Serial # " STUFF HTH DMuey > > - Original Message - > From: Dan Muey <[EMAIL PROTECTED]> > Date: Wednesday, July 23, 2003 10:21 am > Subject: RE: printing html symbol