$one = $two = $three = '';
if($_POST){
$one = $_POST['one'];
$two = $_POST['two'];
//$three = $_POST['three']; //这个没看懂,既然是要输出的,为什么还要post呢?
$three = $_POST['one']+$_POST['two'];
}
?>
之所以出错是因为没有post的值时,赋值出错。
$one = $_POST['one'];
$two = $_POST['two'];
$three = $_POST['three'];
$three = $_POST['one']+$_POST['two'];
?>
我测试来一下,这个代码没有错呀
你好,请问报的错是什么。