Happy Coding
We will create form with type checkbox multi input:
<form method="post" action="process.php" >
Firstname: <input type="text" name="firstname" />
<br />
Lastname: <input type="text" name="lastname" />
<br />
Description: <textarea name="description" rows="10" cols="50"></textarea>
<br />
Add input type checkbox with all name are same and in array postfix []:
Hobbies (multiple):
<input type="checkbox" name="hobbies[]" value="studying" /> Studying
<input type="checkbox" name="hobbies[]" value="reading" checked /> Reading
<input type="checkbox" name="hobbies[]" value="writing" /> Writing
<input type="checkbox" name="hobbies[]" value="sleeping" checked /> Sleeping
<br />
<hr />
<input type="submit" name="submit" value="Submit" />
</form>
And, the process:
echo "<pre>";
var_dump($_POST);
Top comments (0)