I am trying to send a form to another page and my value has # in it but I Have noticed that whatever comes after # is not considered value and is not part of the GET values.
Is there a hack around or a solution to send data using method GET while the string starts with a #.
#starts the fragment, which is not sent to the server.You need to correctly URL-encode your data, e.g. by using the
urlencode()function.