1

在下面的代码中,当我执行它时,它没有显示任何结果。但是我在 if-else 条件下没有结果。实际结果:文本框,提交按钮,没有结果。我的预期结果是一个文本框,应该显示按钮而不是没有结果。不搜索数据,它不会显示任何结果。所以任何人都可以帮助我。

        <form action="<?php echo site_url('search1_site/index');?>" method = "post">
        <input type="text" name = "keyword" />
        <input type="submit" id="opn" value = "Search"  />
        </form>




                    <?php
            if($results){
             ?> <div id='hideme'>
             CLOSE<a href='#' class='close_notification' title='Click to Close'>
            <img  src="<?php echo base_url('img/close.png'); ?>" width="15" height="15" alt="Close"    onClick="hide('hideme')"/>
            </a> <div style="background:#FFFFFF; width: 500px; height: 500px; position: absolute; left: 50%; top: 50%; margin-left: -100px; margin-top: -100px" id="modal"  >
           <table class="display2 table table-bordered table-striped">
           <tr>

                        <th>course_code</th>
                        <th>course name</th>

                    </tr>
              <tr><?php
           foreach ($results as $row) {
              ?>

           <td><?php echo $row->course_code;?></td>
           <td><?php echo $row->course_name;?></td>
             </tr>
                <?php
                } 
            }else{
         echo "no results";
            }
           ?> 
        </table></div></div>
         <script>
        $('a.modal').bind('click', function(event) { 
     event.preventDefault();
         $('#modal').fadeIn(10);
       });
  function hide(obj) {
      var el = document.getElementById(obj);
        el.style.display = 'none';
         }
   </script>
4

3 回答 3

0

您正在检查是否$results设置了变量。

相反,您需要检查是否$results为空。

代替

if($results){

if(!empty($results)){

并确保$results包含数组。我的意思是你的变量必须有价值。

于 2013-08-24T06:04:43.983 回答
0

据我从您的代码中可以看出,未设置 $results 。因此if ($results)评估为假,否则显示。

于 2013-08-24T06:04:56.717 回答
0

检查请求是发布请求还是默认页面加载

利用

 else if($_SERVER['REQUEST_METHOD'] === 'POST')
{
     echo "no results";
}

代替

else
{
  echo "no results";
}
于 2013-08-24T14:42:38.190 回答