html - php这样处理为什么无效
迷茫
迷茫 2017-04-11 09:56:52
0
2
678

article.php文件代码

// 上一页
    public function lastpages(){
        // $this->dao->where("catid=$data[catid] and id<$id")->order('id desc')->find();
         $id = intval($_GET['id']);
        $sql = "SELECT id,title FROM " . get_table('article')." WHERE id< ".$id." ORDER BY id DESC LIMIT 1";
        $result = $this->query_all($sql);
        if($result){
            return $result;
        }else{
            return $result=false;
        }
    }
    // 下一页
    public function nextpages(){
         $id = intval($_GET['id']);
        $sql = "SELECT id,title FROM " . get_table('article')." WHERE id> ".$id." ORDER BY id ASC LIMIT 1";
        $result = $this->query_all($sql);
        if($result){
            return $result;
        }else{
            return $result=false;
        }
    }

main.php代码

// 上一页
$article_info['last_pagesdb'] = $this->model('article')->lastpages();
//下一页
$article_info['next_pagesdb'] =$this->model('article')->nextpages();

html调用代码

 <p><?php echo $article_info['next_pagesdb']; ?></p>

为什么不能输出上一篇下一篇文章呢?

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(2)
巴扎黑

貌似你这种写法,你的 $article_info['next_pagesdb'] 应该是一个多维数组吧? 用var_dump 代替echo试试

伊谢尔伦

你在main.php中var_dump看一下,万一返回false

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template