PHP Series – Building A PHP MySQL Forum Tutorial Series Part 6 – Email Integration




Follow me on Twitter @ http://twitter.com/tktutorials Check out my website @ http://www.timkipptutorials.com This is part six of this tutorial series. In part six we will …

Original source


17 responses to “PHP Series – Building A PHP MySQL Forum Tutorial Series Part 6 – Email Integration”

  1. To get the reply count working, add this to your 'view_category.php' page:
    function reply_count($cid, $tid) {
    $sql = "SELECT COUNT(*) FROM `posts` WHERE `category_id` = $cid AND `topic_id` = $tid";
    $res = mysql_result(mysql_query($sql), 0) – 1;
    return $res;
    }

    Then, replace the 0 that Timm Kipp told you to place in your table with this: '.reply_count($id,$tid).'

    Now you should see the reply count on your page 🙂

  2. Hello TimKipp, many thanks for these tutorials you have made. You have taught me far more than my school teacher've done, You're too awesome. I just donated to your website + I have just ordered your DVD for the rest of the series, I hope you continue to make these tutorials are nice and easy to follow. and you explain very well, I thought, however, on whether there is a chance you can also make a kind of user page where you can add friends, And you can send private messages

Leave a Reply