Hi, i have this script i found on some site:
<?php
if (is_array($_POST['options'])) {
foreach ($_POST['options'] as $option) {
echo $option.'<br />';
} }?>
<form action="evaluate.php" method="post" name="form">
<select multiple name="options[]" size="5">
<option value="Cereal">Cereal
<option value="Juice">Juice
<option value="Bread">Bread
</select>
<input type="submit">
</form>
It works well and i've seen something very similar used to evaluate checkboxes, but how? whats the logic behind that? I think is better if you teach me how to fish instead of only give me the fish, thanks

.