首页 > 开发 > PHP > 正文

php表单请求获得数据求和示例

2024-05-04 23:23:43
字体:
来源:转载
供稿:网友
获得表单请求的值:

案例:

request.php

复制代码 代码如下:


<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8;" />
<title>计算请求</title>
</head>
<body>
<form action="result.php" method="post">
<input type="text"/>
<input type="submit" value="开始计算"/>
</form>

</body>
</html>
[code]
result.php
[code]
<?php
$grade=$_REQUEST['grade'];//grade-->和表单中的name值一样
$arr=explode(" ",$grade);//以空格拆分字符串,并得到数组结果
print_r($arr);
$res=0;
for($i=0;$i<count($arr);$i++){
$res+=$arr[$i];
}
echo "<br/>ALL=".$res;
echo "<br/>AVG=".(round($res/count($arr),0));//round(12.334,2)//四舍五入的方法
?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表