Hello,
I would like to make a variable $find equal to $_POST['find'] if the user is landing on the page after using the POST method, but on the same page make $find equal to $_GET['find'] if the user is landing on the page after using the GET method.
How do I do that?
Thanks in advance,
John
$find = $_GET['find'];
$find = $_POST['find'];