On Tue, 4 Dec 2001, Wagner Garcia Campagner wrote:

> I have a varilable:
>
> $var = 'asdf asdf asdf';   #using blank spaces
>
> Then i send it to another script like this:
>
> <INPUT TYPE=hidden NAME=var VALUE=$var>
>
> The problem is when i get it back the value became:
>
> $var = asdf
>
> It stops in the first blank space.... is there a way for me to recover all
> the variable??

You need to replace all of the space with %20.  You can do this manually,
or use URI::Escape (<-- recommended).  See the appropriate perldoc on
this.  You may need to get it from CPAN.

-- Brett
                                          http://www.chapelperilous.net/
------------------------------------------------------------------------
A compliment is something like a kiss through a veil.
                -- Victor Hugo



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

Reply via email to