Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

array in html form

You can also post multiple inputs with the same name and have them save into an array by adding empty square brackets to the input name like this:

<input type="text" name="comment[]" value="comment1"/>
<input type="text" name="comment[]" value="comment2"/>
<input type="text" name="comment[]" value="comment3"/>
<input type="text" name="comment[]" value="comment4"/>
If you use php:

print_r($_POST['comment']) 
you will get this:

Array ( [0] => 'comment1' [1] => 'comment2' [2] => 'comment3' [3] => 'comment4' )
 
PREVIOUS NEXT
Tagged: #array #html #form
ADD COMMENT
Topic
Name
4+6 =