I'm kinda wanting to put a calendar on my site to where I can fill in the dates as to what events are happening and where, (like a link attached to that date inside the calendar)
Anybody know how to do that or point me in the right direction?
It depends on what you ambitions are. If you just want one setup try looking at http://cgi.resourceindex.com
If you want to learn how to build one then you should start reading at http://www.perldoc.com
I've done a little more work on the script and added 'clickable' months on each side. I've attached the new script.
To use you will need to include three items on the page where you want the calendar.
1. #calendar { position:absolute; top:100px; left:100px; }
This will go in your style section. The image is positioned by setting top and left. It may be ommitted, I think, and the image will be positioned whereever you insert the div.
2. The 'Javascript' section will go in the head of your doc. There are some demo messages included. Simply add your messages there. (day,message)
Use message[0] = new Array(...) for January
thru' message[11] = new Array(...) for December
3. <div> section will go in the body of your page. If you use the absolute positioning, put the <div> section at the beginning, (after the <head> tag), otherwise use the whole <div>...</div> as you would any image. * (this MAY cause problems)
4. You will need to provide the images. If you want to use the drop-down for the month change, then use the script I already posted. Insertion is very similar.
Bookmarks