![]() |
How to create a datepicker in PHP?
How to create a datepicker in PHP?
|
Check these 2 links :
http://www.triconsole.com/php/calendar_datepicker.php http://www.phpclasses.org/package/33...ndar-date.html The best is to use a javascript datepicker in your php site. |
In PHP class, you can use pop-up window to create date picker and user can choose a date from a calendar because the class will automatically generate the HTML and JavaScript code.
|
you can use date functionality term otherwise too many open source are available, datepicker tools as well....
|
Read more about it at
$datepicker = new \Kendo\UI\DatePicker('datepicker'); $datepicker->min(new DateTime('1900-01-01')) ->max(new DateTime('2099-12-31')) ->value(new DateTime('today', new DateTimeZone('UTC'))); ?> echo $datepicker->render(); ?> |
Quote:
|
All times are GMT -7. The time now is 06:56 AM. |
Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.