Installing dhtmlcScheduler on WAMP Server

Hello
I’m a newbie to HTML and PHP. dhtmlcSchedule looks like an excellent product for an website I’m building. I would like to purchase the commercial version, but I can’t get the GPL version set up.

I’m using Dreamweaver and would like to install the scheduler on a WAMP server on my local machine. I’ve gone through the forums, spent a lot of time trying to locate the info, but all I see is installations for Joomla or Wordpress.

Can someone please point me to a link to install the scheduler on my WAMP Server.

Much appreciated.

a) download and unzip package
b) in samples/common/config.php change db settings parameters
c) import next sql in your database

DROP TABLE IF EXISTS `events`; CREATE TABLE `events` ( `event_id` int(11) NOT NULL AUTO_INCREMENT, `event_name` varchar(127) NOT NULL, `start_date` datetime NOT NULL, `end_date` datetime NOT NULL, `details` text NOT NULL, PRIMARY KEY (`event_id`) ) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=latin1;

now you will be able to run

samples\01_initialization_loading\05_loading_mysql.html

which is minimal init for loading and saving data from|in db

From this point you can experiment with client side and server side code, to enable extra features which you need.

Thank you Stanislav.
I made changes to the samples file to my localhost root.
Forgive my ignorance, but I’m just learning PHP & MySQL.
I don’t know what you mean by

c) import next sql in your database.

Where do I add the code.

DROP TABLE IF EXISTS events;
CREATE TABLE events (
event_id int(11) NOT NULL AUTO_INCREMENT,
etc.

Thanks for your help.

Run tool like phpmyadmin or any other php console and use “sql query” or import options, to run the above code and create necessary tables in database.

Thanks Stanislav.

Worked perfectly.