Form not POSTing values

前端 未结 2 602
孤独总比滥情好
孤独总比滥情好 2021-01-23 14:18

Form:

相关标签:
2条回答
  • 2021-01-23 14:57
    <input type="text" maxlength="30" placeholder="Username" id="user" name="user"/><br />
    

    try adding the name field.

    0 讨论(0)
  • 2021-01-23 15:01

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

    0 讨论(0)
提交回复
热议问题