in reply to Re: Re: Always leaving one space in file
in thread Always leaving one space in file

Why do you insist on a list? Does the tellmesage parameter contain multiple values? If it was a textarea than it contains just one value and you can retrieve it with:
my $change = param('tellmessage');

Replies are listed 'Best First'.
Re: Re: Re: Re: Always leaving one space in file
by Anonymous Monk on Apr 23, 2003 at 15:42 UTC
    It is a TEXTAREA not a TEXTBOX

    There is one link perline separated by a pipe "|"

    my site|http://www.whatever.com|blank
    I tried using $change, but it wouldn't work :(
      A textarea is just one value - exactly like textbox. Just try the example presented in the pod for CGI (perldoc CGI) and changet the textbox to textarea - everything will work.