Hi all,
i've got the following problem:
I want to code a class for a calendar-month-overview.
This means, there is a form, where the user can select a month and a year.
Can I just put the form in a function called print_month_overview() or sth. like that? But how can i save/restore the previously selected month/year?
For example, i have a file called test.php, where i'd like to show such a month_overview.
I make a new object of the month_overview.class:
include(...);
$mo = new month_overview;
My problem is, that i dont know, how to handle the selected month and year and, after submitting the form, show the selected month/year in the month_overview ...
Please try to help me 🙂