从核心php中的bloglisting页面获取博客详细信息页面

时间:2017-08-29 12:44:03

标签: php mysqli core

这是我的第一个项目。我想获取带有帖子ID的帖子详细信息页面,但是当我在那个时间运行我的查询时,它没有得到帖子的blog_id。 这是我在函数文件中的代码: -

   public function get_data_blog_detail($blog_id)
   {
   $arr = array();
    $sql_string = "SELECT * FROM blog_detail where id = $blog_id";  // $blog_id is the dynamic blog id
    print_r ($sql_string);
    $query      = mysqli_query($this->connection, $sql_string);
    while($row = mysqli_fetch_assoc($query)){
        $arr[] = $row;
    }
    //return the result set
     return $arr;
    }

此代码位于我的html文件中:

 $post = $obj1->get_data_blog_detail('$blog_id');
 if(!$post){

echo "No information";
  exit;
 }

0 个答案:

没有答案