Adilol

MySQL Database

Jul 8th, 2011
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.42 KB | None | 0 0
  1. /*MySQL DB
  2. For custom cms's and/or database pooling applications
  3. */
  4.  
  5. CREATE TABLE IF NOT EXISTS `users (
  6. `id` int(8) NOT NULL AUTO_INCREMENT //Creates an eight digit, auto-id number
  7. `user` varchar(50) NOT NULL //Username, 50 max characters
  8. `password` varchar(40) NOT NULL
  9.  
  10. /*
  11. I need to add some other functions, like ranks etc. I also need to add MD5 hashing into the db
  12. #Adil
  13. Links
  14. http://i.imgur.com/v7oai.jpg
  15. */
Advertisement
Add Comment
Please, Sign In to add comment