Ejemplo n.º 1
0
 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"]));
 }