php实现图形计算器
存档: index.php 1 <html> 2 <head> 3 <title>图形计算器开发</title> 4 <meta http-equiv="Content-type" content="text/html;charset=utf-8"> 5 </head> 6 7 <body> 8 <center> 9 <h1>图形(周长&面积)计算器</h1> 10 11 <a href="index.php?action=rect">矩形</a> 12 <a href="index.php?action=triangle">三角形</a> 13 <a href="index.php?action=circle">圆形</a> 14 </center> 15 <?php 16 error_reporting(E_ALL & ~E_NOTICE); 17 funct...