PHP Classes

File: mysql.tables

Recommend this page to a friend!
  Classes of Botnari Constantin   Page Rating Class   mysql.tables   Download  
File: mysql.tables
Role: Auxiliary data
Content type: text/plain
Description: Mysql tables that this class use
Class: Page Rating Class
Collect ratings given to pages by site users
Author: By
Last change:
Date: 17 years ago
Size: 632 bytes
 

Contents

Class file image Download
-- -- Table structure for table `hints` -- CREATE TABLE `hints` ( `ID` mediumint(9) NOT NULL auto_increment, `ID_PAGINA` int(11) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `rating` -- CREATE TABLE `rating` ( `ID` int(11) NOT NULL auto_increment, `ID_PAGINA` int(11) default NULL, `URL` varchar(200) default NULL, `RATE` float default NULL, `COUNT` int(11) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;