2011-06-27 58 views
0

我使用smarty模板pinnaclecart從wordpress數據庫中提取數據,以便網站可以顯示博客文章。我修復了IF意外錯誤,但現在又回到了$ this。我米卡住:(

public_blog.php

編輯回

function getPosts() 
{ 
     $query= $this->db->query(" 
     SELECT * from wp_posts where post_status='publish' AND post_type = 'post' 
     "); 

     $posts = array(); 
     if ($this->db->moveNext($query, MYSQL_ASSOC)) 
     { 
       $posts[] = $this->db->col; 

     } 
return $posts; 

} 
$posts = getPosts(); 
view()->assign("body", "templates/pages/site/blog.html"); 

想不出IF錯誤部分

的幫助將不勝感激。

回答

0
$posts = array(); 

缺少分號

相關問題