prashan kukde wrote:
> 
> "textfield" is a multiline text box in the form.
> But, when I read it in the script, the textfield
> looses the extra spaces or paragraph spaces from the
> textfield. Will it be possible to get the data as it
> is filled in the text field ??

do you mean a <textarea> form element?

html does not know what 'extra spaces' are.  try running the data
through a regex to get it to display correctly in a browser.

i'd start with something simple:

my $text = $cgi->param('textarea');
$text =~ s/ /&nbsp;/g;

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

Reply via email to