I have taken a PHP simple small event calendar code and
everything seems to
working except that when the days have a link in it's month
it does not show the
event title.
The MySQL database is the following...
CREATE TABLE calendar_events (
event_id int(11) primary key auto_increment,
event_date date not null,
event_title varchar(50) not null,
event_desc text
);
INSERT INTO calendar_events VALUES ('', '2006-12-25',
'Christmas Day', 'Merry
Christmas!');
INSERT INTO calendar_events VALUES ('', '2007-02-14',
'Valentine\'s Day',
'Flowers are a must!');
INSERT INTO calendar_events VALUES ('', '2007-01-01', 'New
Year\'s Day', 'Times
Square is the place to be!');
Now for the simple PHP code can someone help me place the
event_title in MySQL to
show up with the day when showing my Calandar.
Thank you,
AdonaiEchad
-------------------------------