Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
379 views
in Technique[技术] by (71.8m points)

html - Missing fields when submitting form

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 fields:

<form action="form.php" method="post">
    <label for="firstName">First name: </label>
    <input type="text" id="firstName" />
    <label for="lastName">Last name: </label>
    <input type="text" id="lastName" />
    <label for="address">Address: </label>
    <input type="text" id="address" />
    <label for="age">Age: </label>
    <input type="text" id="age" />
    <button type="submit">Submit!</button>
</form>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...