Hey guys,

Back again for more tech help!

I have a database set up on my server, and the guy who usually sorts everything like this out for me is away travelling. So I downloaded this script to put a ratings system on my website, but stumped at the first instruction:

Quote 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;
How do I do this? I thought it might be as simple as uploading something to the server to create this?

Anyone know what I am talking about lol

Thanks again guys