-4

This is the code and the error is Notice: Undefined index: action in C:\wamp\www\web\calculator.php on line 24

Here is the code

Jyothi Babu Araja
  • 10,076
  • 3
  • 31
  • 38

2 Answers2

0

There is no value for your select(action). So it's posting blank, try to Assign a value attribute to your options

<option value="+">+<option>
<option value="-">-<option>
<option value="*">*<option>
<option value="/">/<option>
Rakesh Sharma
  • 13,680
  • 5
  • 37
  • 44
0

Please try with this code. Keep in mind you must have to set value of each option .

<select name="action">
   <option value="+">+<option>
   <option value="-">-<option>
   <option value="*">*<option>
   <option value="/">/<option>
</select>

Also you can refer here for more information More Info

Divyesh Patoriya
  • 518
  • 3
  • 15