how to pass double quotes in a url from CGI script

2007-03-29 Thread Ravi Malghan
Hi: I am having trouble passing double quotes when passing a url string. Everything after the double quotes does not go through. For example in the perl script below, the browser ends up going to http://appserver/arsys/forms/rearsp01/HPD%3AHelp+Desk/Default+User+View/?&qual='TRS%20Ticket%20Numbe

Re: how to pass double quotes in a url from CGI script

2007-03-29 Thread yitzle
$url = "http://...=\"1406746\"";; print ''; Plugging in the variable gives: http://...=\"1406746\"";>' Should there be a " after the URL=? That may be screwing it up. You also probably want to call a function (don't of its name) to convert the "s into the proper HTTP encoded format. (%22 ?) On

Re: how to pass double quotes in a url from CGI script

2007-03-30 Thread Rob Dixon
Ravi Malghan wrote: Hi: I am having trouble passing double quotes when passing a url string. Everything after the double quotes does not go through. For example in the perl script below, the browser ends up going to http://appserver/arsys/forms/rearsp01/HPD%3AHelp+Desk/Default+User+View/?&qua