
Originally Posted by
readme.txt
INSTALLATION:
================================================== ===========================
1. Make your table for the ratings in your db (you should be able to copy
and paste the following SQL)
================================================== ===========================
CREATE TABLE `ratings` (
`id` varchar(11) NOT NULL,
`total_votes` int(11) NOT NULL default 0,
`total_value` int(11) NOT NULL default 0,
`used_ips` longtext,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3;
Bookmarks