Anish Kumar K. wrote:
> Hi

Hello,

> I have a String which I am forming inside a variable. Say
> 
> my
> $urlString="http://www.yahoo.com/mail?username=anishkumar_k&userid=1234.0&companyname=abc";.
> 
> 
> I am printing this string in a browser through CGI. In that case
> 
> I am getting the URL with encoded characters for = say now it looks like
> http://www.yahoo.com/mail?username=anishkumar_k&userid%3234.0&companyname=abc
> 
> 
> Please check the userid value it is encoded. How can I stop change the URL.

The '=' character is a reserved character[1], see:

perldoc URI::Escape



[1] http://www.rfc-editor.org/rfc/rfc3986.txt


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to