If I set my Form method to GET it will send the action page something like this:
action_page.php?key=value&foo=bar
But is there a way to make it send like this:
action_page.php#key=value&foo=bar
Because the page receiving the values relies on hash variables.
Thanks!
you can set up a “middle man” page which redirects the data like so
middleman.php:
so in your form u would do:
and that would send to middleman.php which inturn would redirect to realpage.php with the hash.