Merrill Oveson wrote:
> I need a web based calendar - I imagine a javascript based one - but if php
> can do the job...
Use jQuery + jQuery UI... There's a great datepicker widget that is
crazy simple to use. Other than the js includes, your entire
implementation will look something like this:
$("input.date").datepicker();
Replace "input.date" with another CSS selector of your choice, but this
will add a date picker to any input with the class "date". That makes it
work across your entire form/app :)
Demo site for jQuery UI datepicker:
http://jqueryui.com/demos/datepicker/
--
justin
http://justinhileman.com
/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/