コード例 #1
0
ファイル: comments.php プロジェクト: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($_POST['comment'])) {
         $this->addcomment();
     }
 }
コード例 #2
0
ファイル: index.php プロジェクト: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     $this->comments = new Comments();
     if (!empty($_GET['id'])) {
         $this->viewpost($_GET['id']);
     } else {
         $this->getposts();
     }
 }
コード例 #3
0
ファイル: posts.php プロジェクト: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
 }