javascript that shows birthdays
I'm looking for some javascript code that shows whose birthday is every day.
Something that tells me: "today is [xxx's] birthday"
where I can set a person's name for each day of the year.
Is it too difficult to make? Because I couldn't find anything like that, other than full calendars where the user has to pick the day or something. I only need it to tell on each day whose birthday is.
[421 byte] By [
patr1c1a1] at [2007-11-11 9:50:30]

# 1 Re: javascript that shows birthdays
Moved this to web where you might get better replies. Java is not javascript, and I don't believe this can be done with javascript anyway. You'll need a database to hold all the birthday info and some serverside scripting.
JPnyc at 2007-11-11 23:34:30 >

# 2 Re: javascript that shows birthdays
Create Database structure to hold the data you want to show.
Design core HTML for your page, including placeholders for anything that will eventually be dynamic
Write the server-side code to query the database, and output the HTML.
tgreer at 2007-11-11 23:35:30 >
