I have an application that is getting posted via HTTP GET to and occasionally my users are putting in hash marks (pound signs) and it breaks everything from that point forward in the post. I do not mind at all using javascript or anything else.
Basically, what I want is if the GET URL looks like this: http://some.thing/index.php?addres=123%20main%20st%#20 I want it tojust get rid of the # but keep everything else, so it would end up like: http://some.thing/index.php?addres=123%20main%20st%20
Thanks everyone.