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

2024年11月16日 08:40
有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):

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