Is it valid markup and is it valid to the html/http spec? If I wanted to have
<form>
<input name="email" />
<input name="email" />
<input name="email" />
</form>
is that valid?
|
Is it valid markup and is it valid to the html/http spec? If I wanted to have
is that valid? |
|||
|
|
As stated on SO:
On a side note, in PHP you can have form fields with the same name if you use PHP's arry syntax for the field name:
This will cause the browser to send over the form fields in a syntax that PHP will use to populate an array for these fields: |
|||
|
|