コード例 #1
0
ファイル: post.php プロジェクト: rexghadaffi/newPacion
 function display()
 {
     include_once "../data-access/mysql-db.php";
     $obj = new DataAccessLayer();
     $this->assign("replies", $obj->selectColumnWhereStatus("tblreply", "postID", $_GET["postid"], "replyStatus"));
     $this->assign("postresult", $obj->selectById("tblpost", "postID", $_GET["postid"]));
 }