Example #1
0
 public static function comment($id)
 {
     $query = Database::query("SELECT * FROM " . self::$tComments . " WHERE id = ?", [$id]);
     $post = Database::fetch_safe_object($query);
     return $post;
 }