I'am searching a lot without finding a solution.
Here is my code:
Post="2/28/2013";
$timestamp = strtotime($_POST['date']);
$datum = date("Y-m-d H:i:s", $timestamp);
I would like to have the next two Saturdays following a date (named by user) to provide two auxiliary dates to customers. I take the date to look in mySQL to see if the date is available.
This gives the next Saturday from today, but it did not help:
$nextSaturday= date("M d Y", strtotime('+1 Saturday'));