Skip to content Skip to sidebar Skip to footer

Form Not Posting Values

Form:

Solution 1:

<inputtype="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"