Skip to content Skip to sidebar Skip to footer

Php Not Able To Access Post Values

I have a HTML login form that is processed and displayed to the user by PHP if they are not logged in. This form is set to POST to /user.php which in turn accesses my authenticatio

Solution 1:

You haven't given your <input>s a name attribute.

Solution 2:

Needs <input name="myname"> Then in the output file put $_POST['myname']

Post a Comment for "Php Not Able To Access Post Values"