所以我已经有一段时间了。太长... 我遇到的问题是所有隐藏值字段都会改变您刚刚输入的输入(至少根据源代码)。
这就是我试图改变它们的方式..(其中6个用于计数,平均等等。)
<input type="hidden" name="sum" value="<?php print $sum ?>" />
这是php文件
<?php
$input = htmlspecialchars($_POST['num']);
$tempray = array($input);
//Also tried things like $sum = $sum + $input but no luck
$sum = array_sum($tempray);
$count = count($tempray);
$avg = ($sum/$count);
$max = max($tempray);
$min = min($tempray);
$posint = $poscount;
if( is_int( $input ) and $input >= 0 and $input % 2 == 0 ) {
$poscount = $poscount + 1;
}
if ($input != 0 AND $input != null){
include 'index.html.php';
}else{
include 'results/index.html.php';
}
?>
不确定为什么这不起作用?