<form action="CatWork.php" method="post">
<h1>Four arithmetic operations</h1>
The first number: < input type="text" name="num1"/>
Second number: <input type="text" name="num2"/>
Operator:
<select name="operator">
<option value=" "> <option>
<option value="-"> ;-<option>
<option value="*">*<option>
<option value="/">/<option>
</select>
<input type="hidden" name="doing" value="jisuan"/>
<input type="submit" value="Start calculation"/>
<br/><br/>
<h1>Area Calculation: Circle</h1>
Please enter the radius: <input type="text" name="radius"/>
<input type="hidden" name ="doing" value="cArea"/>
<input type="submit" value="Start calculating the circle area"/>
<br/><br/>
<!--<h1>Area calculation: rectangle</h1>
Please enter Length: <input type="text" name="lang"/>
Please enter width: <input type="text" name="width"/>
<input type="hidden" name="doing" value="rArea"/>
<input type="submit" value="Start calculating the rectangular area"/>-->
</form>
Because you only have one FORM, and the subsequent hidden name="doing" overwrites the previous control
I know the mistake