Might be simple but im doing something wrong...
this is the code:
The HTML Doc:
HTML Code:
<html>
<head>
<title>The PHP Calculator :+)</title>
</head>
<body bgcolor="#FFFFFF">
<strong>The PHP Calculator</strong>
<form action="Form_Handeling.php" method="GET">
First Number:
<input type="text" name="number_one" maxlength="3">
<br />
Second Number:
<input type="text" name="number_two" maxlength="3">
<br />
Operator:
<select name="actions[]">
<option value="+">Add those mofos!</option>
<option value="-">Subtract those mofos!</option>
<option value="/">Divide those mofos!</option>
<option value="*">Multiply those mofos!</option>
</selct>
<input type="submit" value="Calculate!">
</body>
</html>
the PHP Doc:
PHP Code:
<html>
<head>
<title>The result is....</title>
</head>
<body>
<?php
$number1 = $_GET[number_one];
$number2 = $_GET[number_two];
$action = $_GET[actions];
if($action == "+"){ $sum = $number1 + number2 ;}
if($action == "-"){ $sum = $number1 - number2 ;}
if($action == "/"){ $sum = $number1 / number2 ;}
if($action == "*"){ $sum = $number1 * number2 ;}
echo $sum;
?>
</body>
</html>
Something isnt working properly in there... anyone sees anything wrong?