--- David vd Geer Inhuur tbv IPlib
<[EMAIL PROTECTED]> wrote:
> $data = param('data');
> $data =~ s/\/n//g;
> > Situation: I am reading into my script via
> > param() a textarea called Job Duties. When I
print
> > out that parameter in perl all of the new lines
are
> > ignored and it prints as o
Hi,
$data = param('data');
$data =~ s/\/n//g;
...
..
print "";
print $data;
print "";
Regs David
# ---
>
> Hi,
>
> If this has been answered before please direct me there as I am at a loss as to
>where to look as there is so much info to plow thru.
>
> Situation:
n in your souce is. So you better use
print "$data"
or
$data =~ s/\n//g;
print $data
- Original Message -
From: "jmpond" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 30, 2002 5:31 AM
Subject: HTML contents into Perl CGI
Hi,
If this
Hi,
If this has been answered before please direct me there as I am at a loss as to where
to look as there is so much info to plow thru.
Situation: I am reading into my script via param() a textarea called Job Duties.
When I print out that parameter in perl all of the new lines are ignored a