Missing fields when submitting form

前端 未结 1 450
渐次进展
渐次进展 2020-12-11 23:14

I\'m sharing this one because it\'s so obvious when you know it, but makes you bang your head when not!

Submitting the following form, I wasn\'t getting any of my fi

相关标签:
1条回答
  • 2020-12-11 23:56

    Well the answer was quite straightforward: I didn't specify a name attribute for my input fields.

    Without the name attribute, it's impossible for the browser to send anything. So here's my working form:

    <form action="form.php" method="post">
        <label for="firstName">First name: </label>
        <input type="text" id="firstName" name="firstName" />
        <label for="lastName">Last name: </label>
        <input type="text" id="lastName" name="lastName" />
        <label for="address">Address: </label>
        <input type="text" id="address" name="address" />
        <label for="age">Age: </label>
        <input type="text" id="age" name="age" />
        <button type="submit">Submit!</button>
    </form>
    
    0 讨论(0)
提交回复
热议问题