0
PHP Event Code

/t5/dreamweaver-discussions/php-event-code/td-p/604842
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
-------------------------------
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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/dreamweaver-discussions/php-event-code/m-p/604843#M171948
Feb 16, 2007
Feb 16, 2007
Copy link to clipboard
Copied
Can anyone help me?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/dreamweaver-discussions/php-event-code/m-p/604844#M171949
Feb 22, 2007
Feb 22, 2007
Copy link to clipboard
Copied
I'm trying to break it down and still have no clue in what to
do, can someone help me?
Thank you,
AdonaiEchad
Thank you,
AdonaiEchad
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

