Displaying 1 result from an estimated 1 matches for "3fmyid".
Did you mean:
3fid
2006 May 30
1
Url encoding Help Pls!
Hi guys,
it''s me again, I want to come up with the following url:
www.mysite.com/webpage?myid=1
I keep coming up with the following url:
www.mysite.com/webpage%3Fmyid%3D1
require ''uri''
$myurl = URI.escape("webpage?myid=")
redirect_to(:action => $myurl + 1 )
what am I doing wrong?
I also tried
require ''cgi''
$myurl = CGI::unescape("webpage?myid=")
redirect_to(:action => $myurl + 1 )
oh no, what'...