http://www.perlmonks.org?node_id=169246

einerwitzen has asked for the wisdom of the Perl Monks concerning the following question:

i am passing variables through a URL forward (yea i know but i gotta) but some of them have a space in the variable content and anything after the first space isn't being handled in the recieving script.
http://www.adomane.com?var=yes&var2=yes and no&var3=okay

if i then put in the recieveing script
print "$var <br>"; print "$var2 <br>"; print "$var3 <br>";
it comes out like this:
yes yes
after the first space nothing works! Is this normal, how can i get this to work?

anything will help!

thanks!