获得表单请求的值:
案例:
request.php
复制代码 代码如下:
计算请求
[code]
result.php
[code]
$grade=$_REQUEST['grade'];//grade-->和表单中的name值一样
$arr=explode(" ",$grade);//以空格拆分字符串,并得到数组结果
print_r($arr);
$res=0;
for($i=0;$i$res+=$arr[$i];
}
echo "
ALL=".$res;
echo "
AVG=".(round($res/count($arr),0));//round(12.334,2)//四舍五入的方法
?>
http://www.bkjia.com/PHPjc/770582.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/770582.htmlTechArticle获得表单请求的值: 案例: request.php 复制代码 代码如下: html head meta http-equiv="content-type" content="text/html;charset=utf-8;" / title计算请求/title /h...