I know result page that uses GET method can be bookmarked while the one using POST cannot be. I also know about the restrictions of the GET methods.
Now suppose I w
function getQVar($key){ return isset($_GET[$key]) ? $_GET[$key] : (isset($_POST[$key]) ? $_POST[$key] : null); } echo getQVar("name");
Switch around $_GET and $_POST to prioritize POST over GET vars.