PHP interesse |
|
Hoi,
Ik zit met een (klein) probleempje.
Namelijk het volgende:
Ik gebruik dit stukje php om het aantal reacties te tellen in een bepaalde forum categorie (alle reacties in die categorie bij elkaar dus)
<?php
$his = mysql_query("SELECT * FROM forum WHERE catid = '".$show->id."'");
While($this = mysql_fetch_object($his))
{
$matthias = mysql_query("SELECT count(1) AS aantal FROM forum_reacties WHERE tid = '".$this->id."'");
$totaal_reacties = @mysql_result($matthias, 0);
}
$aantal_reacties = $totaal_reacties
?>
<?php $his = mysql_query("SELECT * FROM forum WHERE catid = '".$show->id."'"); { $matthias = mysql_query("SELECT count(1) AS aantal FROM forum_reacties WHERE tid = '".$this->id."'"); } $aantal_reacties = $totaal_reacties ?>
Jammergenoeg werkt dit niet correct.
Als ik een nieuw topic toe voeg staat het aantal berichten weer op 0 (nul).
Wie weet hoe ik dat op kan lossen, zonder eerst het hele forum te moeten verbouwen.
Alvast bedankt
Mvg
Matthias
|