Quote:
08-10-03 at 10:03 AM xiphoid said this in Post #11
I have a question.
Due to importing from other forums, users are having custom user titles. I want to reset those. But not if their postcount is over x posts.
You happen to know how to do that ?
Reset user titles to the ones as set in the forum, except if their postcount is above x posts ?
That would be greatly appriciated
|
You must do 2 SQL queries in that hack I think now,
1 to get the post count, and 1 to reset the titles.
After you done the postcount query you most do like:
PHP Code:
if ($user[posts] < 200) { reset titles } else { //do nothing }
If you think you could do it say it

Else i'm willing to give it a try!