Lynne, thanks for sticking with this!, i created a table using:
PHP Code:
CREATE TABLE ctoptip (count INT(10) UNSIGNED NOT NULL);
INSERT INTO ctoptip SET count = 0;
and created aplugin as instructed with
PHP Code:
if (in_array($foruminfo['forumid'], array(52))) {
$db->query_write("UPDATE user SET ctoptip = ctoptip + 1 WHERE userid=" . $vbulletin->userinfo['userid']);
}
where can i put the rest so that it updates in the postbit for the user everytime the create the post via the form?