Guest User

Untitled

a guest
Oct 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $queries[0] = 'CREATE TABLE ' . $prefix . 'video_games
  2. `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
  3. `title` varchar(255) NOT NULL
  4. ' . $collate;
  5.  
  6. $queries[1] = 'INSERT INTO ' . $prefix . 'video_games (
  7. `title` VALUES ('Rocket League', 'Counter Strike', 'Call of Duty'));
  8. ' . $collate;
Add Comment
Please, Sign In to add comment