Quote:
Originally Posted by Hanoifishing
Hi!
usermarks is my table that I add it to my db, I write new product work with it. Each member have some record in it, and I want to delete that records, I know that I must write plugin, please tell me how?
Thanks in advance.!
|
Like I told you, I use the useradmin_prune hook to do a query of my own when deleting users. I have an added table called "users" (with the s on the end - vbulletin has the "user" table without the s) and I have this query in that hook location:
PHP Code:
$db->query_write("DELETE FROM " . TABLE_PREFIX . "users WHERE id IN ($userids)");