Installing this script is easy.

First we need to build the table inside of MySQL.

Run the following queries inside of MySQL.


CREATE TABLE calendar ( 
event varchar(255), 
userid varchar(255) NOT NULL, 
event_type varchar(50), 
event_finish varchar(32) NOT NULL, 
received datetime NOT NULL,
hour varchar(32) NOT NULL, 
PRIMARY KEY (received, userid) 
);

Once you hit, GO, or finish typing it out, it should be listed in the tables of your database. 
Continue on....

Simply open conn.php, located in the includes folder, edit the following lines;

$db = mysql_connect("localhost","username","password");
mysql_select_db("database",$db);

Fill in your, host address, username and password as well as your database name for your MySQL database. Save conn.php.

Upload all of the files via ASCII, and browse over to the dir. Everything should be working o.k!