如何handel php错误

时间:2015-05-04 11:36:13

标签: php html

我正在使用两个文件,一个是html,另一个是php 在我的html文件中,我创建了这个

我的html文件的代码:index.html

<html>
<body>
<form method='get' action='ans.php'
<input type="text" name="name">
<input type="button" name="submit">
</form>
</body>
</html>

当用户在输入标签中输入输入时,会将用户带到ans.php文件中,我在其中编写了一些php

我的php文件:ans.php

<?php

$text= $_GET['name'];
echo $text
?>

2 个答案:

答案 0 :(得分:1)

if(isset($_GET['name']))
{
 echo $_GET['name']; 
}
else 
{

}

答案 1 :(得分:0)

使用empty()检查变量是present还是not empty还是false。添加支票 -

if(!empty($_GET['name'])){
   $text= $_GET['name'];
   echo $text;
}

如果variable可能包含false,那么Hanky웃Panky的回答将有效。