首页上一页 1 下一页尾页 2 条记录 1/1页
[PHP快速入门及项目实战]第2章,2.5的地方的小测试代码无法正常输出,但没有显示错误
发表在PHP图书答疑
2012-11-25
是否精华
是
否
版块置顶:
是
否
<?php
if(isset($_POST['Submit']) and $_POST['number1']!=null and $_POST['number2']!=null){
$number3=$_POST['number1']+$_POST['number2'];
}else{
$number3=null;
}
?>
浏览器页面无法正常输出。,但是没有错误提示
if(isset($_POST['Submit']) and $_POST['number1']!=null and $_POST['number2']!=null){
$number3=$_POST['number1']+$_POST['number2'];
}else{
$number3=null;
}
?>
浏览器页面无法正常输出。,但是没有错误提示