Skip to content Skip to sidebar Skip to footer

Form Not POSTing Values

Form:

Solution 1:

<input type="text" maxlength="30" placeholder="Username" id="user" name="user"/><br />

try adding the name field.


Solution 2:

You must include the 'name' attribute in your form inputs, this is what determines where the value goes in $_POST.


Post a Comment for "Form Not POSTing Values"