Advertisement
AbdulMuttaqin

Untitled

Jul 3rd, 2018
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.40 KB | None | 0 0
  1. CREATE TABLE `pageview` (
  2.  `id` int(11) NOT NULL AUTO_INCREMENT,
  3.  `page` text NOT NULL,
  4.  `userip` text NOT NULL,
  5.  PRIMARY KEY (`id`)
  6. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
  7.  
  8.  
  9. // totalview
  10.  
  11. CREATE TABLE `totalview` (
  12.  `id` int(11) NOT NULL AUTO_INCREMENT,
  13.  `page` text NOT NULL,
  14.  `totalvisit` text NOT NULL,
  15.  PRIMARY KEY (`id`)
  16. ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement