php没有错误,但空白输出页面

时间:2016-01-03 20:06:36

标签: php html

这是我的PHP代码,我试图把它放在同一页面上,但现在出来的是beng显示,并且没有错误也显示出来。你可以帮助我enter image description here

<html>
<body>
<form action="try.php" method="POST"> 
<input type="text" name="txtname"> 
<input type="text" name="txtage"> 
<input type="submit" value="send" name="submit">
</form>

<?php 
if(isset($_POST['txtname']) && isset($_POST['txtage'])){
$text=$_POST['txtname'];
$age=$_POST['txtage']; 
echo $text; 
echo $age; 
}
 ?>
</body>
</html>

1 个答案:

答案 0 :(得分:4)

它应该是 $("#checkbox_div").on('click','input:radio', function() { alert("clicked"); }); 而不是$_POST$_post是PHP的超级全局之一,必须全部上限。 $_POST将被视为局部变量。 (ref