Hi all,
I'm trying to build a booking system where the customer picks out two dates, start date and end date. Those two dates are saved in my database, but in order to grey out all the days between the start and end dates in my calendar, I need to output every single day (my calendar can disable a array of dates)
Example: start date is 02-04-2011, end date is 02-07-2011. I need the output to be: 02-04-2011, 02-05-2011, 02-06-2011, 02-07-2011.
The start and end dates are put in variables $date1 and $date2. The output must be in mm-dd-yyyy format.
I don't know where to start at all 😕 - any suggestions?
TIA.