I´m trying to sum the values of a form that´s filled in by the user. I´m just learning PHP, I´m sorry for this n00b question :)
Here´s a quick example of how is my html form:
...
What´s your favourite month?
<input type ="checkbox" name="month[]" value="march">March<br>
<input type ="checkbox" name="month[]" value="april">April
What´s your favourite day of the week?
<select name="day[]">
<option value="monday">Monday</option>
<option value="friday">Friday</option>
</select>
So, inside my php file I put:
/*Declare the variables here*/
$month = $_POST["month"];
$day = $_POST["day"];
/*Assign a value to each variable*/
$month = array (
"march" => 10,
"april" => 20);
$day = array (
"monday" => 1,
"friday" => 2);
$number = array_sum($month + $day);
print "<br>Your magic Number is... <b>".$total."</b>.<br>"
I can´t make this work, because the array just sums all the values, and not just the ones that the user selected inside the form. I can imagine that I´m telling exactly that with array_sum(). So how can I tell the script to sum just the values that the user selected?
Thanks for your advice!
Rosamunda