Hi
I have a session array that olds information about a booking date that is collected by various form checkboxes:
<input name="book[]" type="checkbox" value="'.$page_id.', '. $accomName. ', ' .$date.'" ' />
So the one value as three pieces of information in them that I can later use by breaking each value apart.
The problem is the session array that holds these values. When the user adds dates they only show in the order that they have selected them. I want to sort the session array based on the date that forms part of its value.
Hope this makes sense
Thanks