通过if语句比较空数据

时间:2016-09-25 11:32:31

标签: php html if-statement null

我无法将set变量与null进行比较。我的代码以

运行
.......some code
echo "Question1 is" . $q1. "is Question-1";
?>

<html>
<head>  
<form method="post" method="post" action="jobprocess.php">
<?
    if($q1!="")
    { ?>
        <h3> Answer the below simple questions related to the job and apply </h3>
        <div align="center">
        <input type="text" name="q1" required placeholder="<?php echo $q1;?>"><br>
    <? } ..... some more code

结果显示为

  

问题1是问题1

     

回答以下与工作相关的简单问题并申请

     

[文字框]

虽然第一行确认变量q1 =“”,但我无法理解为什么它会进入!$ q1 =“”loop

感谢您的耐心等待 在我发布之前我已经使用了=== null和空($ var)的用法,我无法弄清楚我的代码有什么问题

1 个答案:

答案 0 :(得分:2)

尝试使用if(!is_null($q1))代替您的条件