Right, I asked for a bit of help on a forum about incrementing a number in the database each time the RSS posts, and this is the help I got back -
To create the table - (I'm using 'forum_' as for my tables)
PHP Code:
create table forum_rsscount (
userid int(8) not null,
posts int(8) not null default 0,
primary key(userid)
)
then this in the code for the postcounts -
PHP Code:
update forum_rsscount
set posts = posts + 1
where userid = X
but it didn't work

Anyone got any suggestions?