How to send a multi vektor with hidden ?
I'm working on a calender in php. To choose dates I use checkboxes to select days. To store the selected days I use an array.
I have created a vektor like this, $datum[$month][$date].
$month="month".
$date="the selected dates".
The problem is to pass the array thru several pages ( it is the same page that is called ) and to get the old values in the same positions on the other pages.
I tried the function serialize($datum) and to pass the variabel $datum as hidden but it didn't work.