Hi All,

we need PHP season date calender, which mean if we enter like 25-DEC-12-25-APR-13 the calender only alow user to pick date from the season date only.

please give example link, or full code,

thanks

Recommended Answers

All 4 Replies

It's called Google, been around for a very long time and has a really nice UI you can use ;)

Member Avatar for diafol

Some datepickers can be set to limit start and end dates. jQueryUI has this functionality as do many more.

phorce has a point. Don't ask for full code - that's your job. Show any code with which you're having difficulty and we'll have a look.

thanks brother,

        <script type="text/javascript" src="../calendar-1.5.js"></script>
        <script type="text/javascript">
        var cal_1 = new Calendar({
            element: 'calendar_1',
            inline: true,
            months: 4,
            dateFormat: 'm/d/Y',
            weekNumbers: true,

            onSelect: function (element, selectedDate, date, cell) {
                document.getElementById('date_1').innerHTML = selectedDate;
            }
        });

        </script>

i found fr [Click Here](http://code.google.com/p/calendarjs/)

Member Avatar for diafol

So, does it support date limits?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.