Form Php



    Using Default Checkbox Values


$food = $_GET["food"];
if (!empty($food)){
    echo "The foods selected are: ";
    foreach($food as $foodstuff){
        echo ''.htmlentities($foodstuff);
    }
    echo "
.";
}
else {
    echo ('
    
        

            
            
            
        

        
     ');
    }
?>