Re: JQuery DatePicker & PHP
Javascript date pickers (and other kinds of client side pickers) work by assigning the output to a field in the form that you specify. This would be a field that would be normally typed in by hand. If you do not want users to be able to change that form field by typing, then make it readonly. So the user sees that the datepicker has "filled in" the field for them when a date is clicked on.
You then process the form as normal. Nothing PHP specific either, works with any other server-side technology.
|