I have a form with method="get"
. In the form I need to pass the URL of a CSS file but it is encoding it to http%3A%2F%2Fwww...
etc.
Is there a way to stop the encoding of the URL as it is breaking the file.
Thanks
I have a form with method="get"
. In the form I need to pass the URL of a CSS file but it is encoding it to http%3A%2F%2Fwww...
etc.
Is there a way to stop the encoding of the URL as it is breaking the file.
Thanks
No, you can't. The encoding is required to make a valid URL.
Instead, decode the value in your receiving code (what platform are you on anyways, URL decoding is usually done automatically for you)
No for security reason you can't do that. You have to collect decoded it at the receiving end.