So I'm using a basic formmail script. Within the script I'm using a redirect variable. The value of the redirect is something like:

 http://www.mysite.com/NewOLS_GCUK_EN/bling.aspx?BC=GCUK&IBC=CSEE&SIBC=CSEE

When the redirect action happens however, the URL appears in the browser as:

 http://www.mysite.com/NewOLS_GCUK_EN/bling.aspx?BC=GCUK&IBC=CSEE&SIBC=CSEE

You can see the & characters are replaced with &

Is there any way to fix this?

link|improve this question

77% accept rate
2  
@Elliot Where is this redirect URL specified? If it is in a "hidden" input field in the HTML source, stop using that script immediately and consider putting the server on which it was hosted in an acid bath ;-) It is that dangerous to your users (and to you). – Sinan Ünür Mar 26 '10 at 14:39
google.com/search?q=NewOLS_GCUK_EN Error Occur. Pls try again WTF? – Sinan Ünür Mar 26 '10 at 16:39
feedback

1 Answer

Maybe you can edit the script with a string substitution:

$myRedirectURL =~ s/\&/\&/g;

Or perhaps look in the script where the opposite substitution is taking place, and comment out that step.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.