关于php表单的 总是显示错误 不知道哪里错了求帮助 哭哭

2024-11-16 08:40:03
推荐回答(3个)
回答1:

$one = $two = $three = '';
if($_POST){
    $one = $_POST['one'];
    $two = $_POST['two'];
    //$three = $_POST['three'];  //这个没看懂,既然是要输出的,为什么还要post呢?
    $three = $_POST['one']+$_POST['two'];
}
?>


"/> + 
"/>

"/>

之所以出错是因为没有post的值时,赋值出错。

回答2:


$one = $_POST['one'];
    $two = $_POST['two'];
    $three = $_POST['three'];  
    $three = $_POST['one']+$_POST['two'];

?>


"/> + 
"/>

"/>

我测试来一下,这个代码没有错呀

回答3:

你好,请问报的错是什么。