My friend and I are making a website that compiles news stories based on your interests. Is there and easy way to take the checkbox data and make an array out of the selecte
the HTML markup:
Politics Movies World
and in the php code:
$checked = $_GET['options']; for($i=0; $i < count($checked); $i++){ echo "Selected " . $checked[$i] . ""; }