Using Checkboxes

Lesson 16
Author : Afrixi
Last Updated : November, 2017


PHP - Programming Language
This course covers the basics of programming in PHP. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
Table of Content

Code

site.phpCopy
<form action="site.php" method="POST"> Apples: <input type="checkbox" name="fruits[]" value="apples"> Oranges: <input type="checkbox" name="fruits[]" value="oranges"> Pears: <input type="checkbox" name="fruits[]" value="pears"> <input type="submit"> </form> <?php $fruits = _POST["fruits"]; echo $fruits[1]; ?>