Re: Create HTML code with perl

2006-09-07 Thread JupiterHost.Net
Brian McKee wrote: On Monday 04 September 2006 00:34, Webmaster Adil wrote: Hi All I need print HTML codes with perl: If you want to HTMLify plain text, try Text::InHTML it even does syntax highlighting (if available) if the plain text is HTML, Perl, XML, and about 95 +/- other ones.

Re: Create HTML code with perl

2006-09-07 Thread Brian McKee
On Monday 04 September 2006 00:34, Webmaster Adil wrote: > Hi All > > > > I need print HTML codes with perl: > Look at the CGI module For example - here's a chunk of code from a website I wrote print start_span({-class=>'contact'}), h3('Team Contact Information'), start_table(), T

Re: Create HTML code with perl

2006-09-05 Thread Cristi Ocolisan
Hi Adilson, Try this: print qq{ Tste Tste Tste Tste }; But I think you should try to find other ways too... Hope it helps, CO > Hi All > > > > I need print HTML codes with perl: > > > > > > > > Tste > > Tste > > > > > > Tste > >

Re: Create HTML code with perl

2006-09-04 Thread Adilson
David, i used the Charles's tips (with ' delimiter) and now it works. Thanks all. Adilson David Van Ginneken wrote: On 9/4/06, [EMAIL PROTECTED] * <[EMAIL PROTECTED] > wrote: Hi All I need print HTML codes with perl:

Re: Create HTML code with perl

2006-09-04 Thread David Van Ginneken
On 9/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All I need print HTML codes with perl: Tste Tste Tste Tste I tried with this way, but not work: print MAPA ""; print MAPA "\n"; print MAPA "teste\n"; print MAPA "teste\n"; print MAP

Create HTML code with perl

2006-09-04 Thread Webmaster Adil
Hi All I need print HTML codes with perl: Tste Tste Tste Tste I tried with this way, but not work: print MAPA ""; print MAPA "\n"; print MAPA "teste\n"; print MAPA "teste\n"; print MAPA "\n"; print MAPA "\n"; print MAPA "teste\n"; print

RE: Create HTML code with perl

2006-09-04 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : : I tried with this way, but not work: One reason for the problem is that perl does not recognize " and " as operators. The print statement needs some type of delimiter to print plain text. As you probably know already, a pair of double quotes (") is one set of

Re: Create HTML code with perl

2006-09-04 Thread Jeff Pang
> > > > >Tste > >Tste > > > > > >Tste > >Tste > > > > > Hi, you can print them like: print < .. HTML_EOF (notice:there should be no spaces before or after the second HTML_EOF symbol). or print qq { ... }; -- Jeff Pa

RE: Create HTML code with perl

2006-09-03 Thread Wijaya Edward
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Mon 9/4/2006 12:28 PM To: beginners@perl.org Subject: Create HTML code with perl Hi, I need print HTML codes with perl: Don't print the HTML verbatim like that. Check out CGI.pm. Makes your life e

Create HTML code with perl

2006-09-03 Thread preimp
Hi All I need print HTML codes with perl: Tste Tste Tste Tste I tried with this way, but not work: print MAPA “”; print MAPA "\n"; print MAPA "teste\n"; print MAPA "teste\n"; print MAPA "\n"; print MAPA "\n"; print MAPA "teste\n"; print MAP