Topic: I need a little something..
Alright, I want to make a forums that users are not credited with posts when posting in it.
In this example, users are not suposed to be credited when posting in forum with id 5.
I tried
if ($fid != 5) {
$db->query ... num_posts=num_posts+1
}
if ($fid == 5) {
$db->query ... num_posts=num_posts
}
But that dosn't seem to work. Any idea how it can be done?
Thanks in advance!