I have this software from another programmer who has left the project. Now I have a problem, some of the URLs with GET variables wont work i think it's because of the # so this URL looks like this.
www.domain.com/myvariable1/myvariable-#2
so as you can see the GET variable only parses 'myvariable-' so the #2 is cutted off. I need to have the full 'myvariable-#2'
I have searched google and spent hours to get this resolved. Please help me. Thank you!
EDIT:
So I found a solution in doing this. I parse the whole URL using javascript, and from there I can now get the remaining string after the #
Thank you for all the answers. Thanks a lot!