Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

PHP Event Code

Guest
Feb 15, 2007 Feb 15, 2007

Copy link to clipboard

Copied

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

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

TOPICS
Server side applications

Views

222
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 16, 2007 Feb 16, 2007

Copy link to clipboard

Copied

Can anyone help me?

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 22, 2007 Feb 22, 2007

Copy link to clipboard

Copied

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

Thank you,
AdonaiEchad

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines