|
ampersand problem in cgi script...
Hi ,
I am executing a script that call in a request....to a diff server...
When i am passing the parameters its not working properly..
Suppose i send ...
"pageid=first"."\u0026"."serv=1.0"
in the server log the query string is ...
"pageid=first0026serv=1.0"
Of i sent it as
"pageid=first"."&"."serv=1.0"
then the query string is ...
"pageid=first" the second part is getting truncated..
if append 2 &'s the the reuslt would be...
"pageid=first&&serv=1.0"
but what i want is ....
"pageid=first&serv=1.0"
Any idea where i might have gone wrong...
Regards
|