Hello,

I've got a mysql table that keeps dates of events:



CREATE TABLE `events` (
  `id` int(11) NOT NULL auto_increment,
  `id_place` int(11) NOT NULL,
  `eventDate` datetime default NULL,
  `eventHour` varchar(10) collate latin1_general_ci default NULL,
  `enabled` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci
AUTO_INCREMENT=1 ;



And I need that the events date be the only active dates in the inline
datepicker calendar.
Anybody knows how can I make this working?! I'm not being able to but
only the dates from the mysql working
and give the links for that event.


Thanks in advance,
Ruben Nascimento

Reply via email to