在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>计算器</title> </head> <body> <form method="post"> <table align="center"> <tr> <td align="center">第一个数</td><td><input type="text" name="first"></td> </tr> <tr> <td colspan="2" align="center"> <input type="radio" name="operator" value="+">+ <input type="radio" name="operator" value="-">- <input type="radio" name="operator" value="*">* <input type="radio" name="operator" value="/">/ </td> </tr> <tr> <td align="center">第二个数</td><td><input type="text" name="second"></td> </tr> <tr> <td> <input type="submit" value="提交"></td> </tr> </table> </form> <?php header("content-type:text/html;charset=utf-8"); $first=$_POST['first']; $second=$_POST['second']; $operator=$_POST['operator']; echo '结果为:'; if ( $operator == '+' ) { echo $first+$second; } if($operator == '-') { echo $first-$second; } if($operator == '*') { echo $first*$second; }if($operator == '/') { echo $first/$second; } ?> </body> </html> 这个会报警告: 上网查了一下,因为接收了空值,所以报的这个警告。 所以这个东西可以不用管。 解决方法: https://www.baidu.com/link?url=gy5XGLhoRy8bUMPZLMcTGuWl7nQKAXt9Zrn642HRBhAcZS5oRax1KFrga5IqAxzXlKs5Xv3qGnc68AjakEKIW_&wd=&eqid=bb0491f00000160a000000025ae170a7 运行结果:
|
2022-07-18
2022-08-16
2022-11-06
2022-07-29
2022-08-18
请发表评论