コード例 #1
0
ファイル: commentController.php プロジェクト: FebV/forum
 public function return_comments_list($comment_id)
 {
     $comment = new comments();
     $res = $comment->select_all($comment_id);
     echo json_encode($res);
     return;
 }