I know the title may be confusing but essentially I'm using the $_GET method for a variable and I cannot use it if there is a #check infront of it.
For example: http://this.org/#check?whatever=1
So naturally if I check for the variable like this:
if ($_GET['whatever'] == 1) {
}
It won't work. So what can I add perhaps infront of the 'whatever' when I check for it to make it work? If i don't have the #check infront of the url the entire website refreshes. Any help would be appreciated, thanks for your time.