• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
Các bạn vào phpadmin để truy vấn SQL:
1/Xóa thành viên và reset id về 1:
Xóa tất cả thành viên trừ admin:
PHP:
delete from user where usergroup<>6;
Reset id về 1..làm lại từ đầu :)
PHP:
alter table user AUTO_INCREMENT =2;
2/Xóa tất cả bài viết..
Xóa tất cả thread:
PHP:
delete from thread;
Xóa tất cả các bài viết:
PHP:
delete from post;

Reset id:

PHP:
alter table post auto_increment=1;
Reset postid:
PHP:
alter table thread auto_increment=1;
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top