I was trying to do 1 more thing but unsuccessful, I was thinking if there is only like 1 reply on a page it will not show an advertisement and I'm looking for a way to show the add if there isnt enough replies yet, then if there is enough replies to show the ads regulary, I tried somethin like below but no luck with that
if ($i <=0) {
echo '<tr><td colspan="2" bgcolor="#FFFFFF" align="center" style="border: 1px #E0E0E0 solid;">';
include 'ads/topwide.php';
echo '</td></tr>';
}else if ($i % 4 == 0 && $i != 0) {
echo '<tr><td colspan="2" bgcolor="#FFFFFF" align="center" style="border: 1px #E0E0E0 solid;">';
include 'ads/topwide.php';
echo '</td></tr>';
}