Hello,
Does anyone know if I can use
$variable = $GET["variable"]
and
$variable = $POST["variable"]
on the same page? I think I have to use the above examples to pass values from a form to the subsequent page. But I want to be able to allow users to either log in from form fields, or click directly from a saved URL. Both procedures work using separate pages with $POST and $GET, but that leaves me updating two login pages all the time.
Would I need to use an IF THEN statement to identify the attempted login process? And if so, do you know how to do that? Thank you in advance for your help.