Hey guys, I'm not sure if you can do this in PHP but here is what I need a script to do.
I've been working hard messing around and got all my other scripts working but I can't figure out how to do this one part.
Ok I type in the date in the following format in a form: 2006-05-30
Once the php receives my form submission I want it to convert that date to the following format: May 30th
And this is going to be a date range so
start_date end_date
2006-05-30 2006-06-10
I want it to calculate the interval in the days. So the interval for the example is 12 days.
I'm not sure if this is possible at all since subtraction won't do the trick....
and I don't know if it's possible to convert the date to a different format....
hence why I ask.
Help is definitely appreciated.