Do what with that ?
ALTER TABLE `users` ADD COLUMN `id` INT(10) UNSIGNED PRIMARY KEY AUTO_INCREMENT;
It adds a unique ID for each user for future reference, instead of making a key is better to use ID.
Do what with that ?
ALTER TABLE `users` ADD COLUMN `id` INT(10) UNSIGNED PRIMARY KEY AUTO_INCREMENT;
It adds a unique ID for each user for future reference, instead of making a key is better to use ID.
It adds a unique ID for each user for future reference, instead of making a key is better to use ID.
Like so ? Gyazo - 59df57a91840cc474165f7fd9350c5a4.png
*Like I said I am clueless when it comes to PHP lol, I only know the newbie basics
Like so ? Gyazo - 59df57a91840cc474165f7fd9350c5a4.png
*Like I said I am clueless when it comes to PHP lol, I only know the newbie basics
The previous code I gave you is a SQL command so no need to add PHP variables to it, just copy/paste it in the query field.
The previous code I gave you is a SQL command so no need to add PHP variables to it, just copy/paste it in the query field.
I have no idea what you are talking about lol
The field in your image man -_-
add this code into that field called "SQL Query":
ALTER TABLE `users` ADD COLUMN `id` INT(10) UNSIGNED PRIMARY KEY AUTO_INCREMENT;