שלום , הוספתי טבלה בPHPMYADMIN :
PHP קוד:
CREATE TABLE `customer` (
`customerid` bigint(32) NOT NULL auto_increment,
`username` varchar(50) NOT NULL default '',
`password` varchar(255) NOT NULL default '',
PRIMARY KEY (customerid),
UNIQUE username (username)
) TYPE=MyISAM AUTO_INCREMENT=132 ;
עכשיו כשאני מוסיף לשם משתמש עם הפקודה הזאת:
PHP קוד:
insert into customer (username,password) values ($username,$password)
זה מוסיף את המשתמש אבל זה עושה לו בלאגן בID...משתמש אחד אני מוסיף הID למשל 132 ומשתמש שני אני מוסיף אז הID 150 למשל..
איך לעשות שהID יהיה מסודר? למשל 1 2 3 4 5
תודה!