Skip to main content
February 16, 2007
Question

PHP Event Code

  • February 16, 2007
  • 2 replies
  • 244 views
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

-------------------------------

This topic has been closed for replies.

2 replies

February 22, 2007
I'm trying to break it down and still have no clue in what to do, can someone help me?

Thank you,
AdonaiEchad
February 16, 2007
Can anyone help me?