Hi, I have a referral script and i want to set the user id's to start at a specific number, such as 500. When someone signs up to my site 360claim.com they are assigned a referral ID, which is shown in the MYSQL database. I want it so that when they sign up they will be given a higher referral number. Therefore making it look more professional as it will appear that there are more users. is this possible, any help would be appreciated. andy
Yeah i guess that if someway a user is registered with a random ID it would solve it. Thinking about it, is there a way of the ID being generated randomly between an amount? Such as one user registers and gets ID 505 and then next gets 950 (between 1 and 1000)..
Manually insert a user with high userID . Next inserted records will continue from that number. You can always update or manipulate autoincrement fields on mysql. (In mssql you have to set identity insert on)