Re: "\n" in Perl

2001-12-05 Thread Brett W. McCoy
On Wed, 5 Dec 2001 [EMAIL PROTECTED] wrote: > I' d like to know why, when I use a cgi script under Win95, the browser > doesn't print in output the carriage-return "\n". > An example: this is my simple cgi script: > > print qq' > > Perl Page > '; > for (1..5) {print qq'Hello\n';} > print qq''; >

Re: “\n“ in Perl

2001-12-05 Thread tommy
CTED] To : [EMAIL PROTECTED] Date : 05 December 2001 11:04:10 Subject : “\n“ in Perl Hi to All, >I' d like to know why, when I use a cgi script under Win95, the browser >doesn't print in output the carriage-return “\n“. >An example: this is my simple cgi script: > >prin

Re: "\n" in Perl

2001-12-05 Thread Jan-Willem Haaring
Hi, use for (1..5) { print qq'Hello\n'; } instead is a layout equivalent of \n; - JW On Wed, 5 Dec 2001 [EMAIL PROTECTED] wrote: > Hi to All, > I' d like to know why, when I use a cgi script under Win95, the browser > doesn't print in output the carriage-return "\n". > An example: this is m

Re: "\n" in Perl

2001-12-05 Thread Carl Franks
a line break. So do: for (1..5) {print qq'Hello';} Hope this helps. Carl -- >From: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: "\n" in Perl >Date: Wed, Dec 5, 2001, 11:04 am > > Hi to All, > I' d like to know why, when I use a cgi scri

Re: "\n" in Perl

2001-12-05 Thread Stephan Tinnemeyer
Angelo, to make a new line in HTML you have to use the tag . New lines and spaces more than one are completely ignored. This is an HTML issue, so if you have more questions you may ask me off-list. Stephan -- Dipl.-Chem. Stephan Tinnemeyer Lindenallee 20 24105 Kiel Germany -- To unsubscribe,

"\n" in Perl

2001-12-05 Thread angelo . bettati
Hi to All, I' d like to know why, when I use a cgi script under Win95, the browser doesn't print in output the carriage-return "\n". An example: this is my simple cgi script: print qq' Perl Page '; for (1..5) {print qq'Hello\n';} print qq''; In output I see the word "Hello" repeated 5 times in