<?php //simple class to create a forum
$forum = new php_forum_class($dbh); //$dbh=PDO Database Connection
$forum->set_post($forum->get_post($my_id)); //Get & Set Current Post by ID
echo $forum->get_comments(); //Get Comments etc....
?>
PHP Forum Class is Looking good so far!
Add New #forumTesting new Forum Class
Add New #forumTesting new Forum Class
forum - posted by Sam Am I on April 24, 2023, 11:51 pm views: 31
Recent Comments
<?php
$recent_forum_array=$forum->get_recent_comments(50);
for($i=0;$i<count($recent_forum_array);$i++){ //......}
?>