Login   Register  
PHP Classes
elePHPant
Icontem

File: mysql.tables

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2007-06-16 05:29
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 ;