I want to select all the Mondays within date range and save the dates in the database. This is the code I tried. But it save only last date. I want to save all the Mondays. Please can you help me?
$startDate = '2011-08-10';
$endDate = '2011-10-23';
for ($i = strtotime($startDate); $i <= strtotime($endDate); $i = strtotime('+1 day', $i)) {
if (date('N', $i) == 1) {
$query = "INSERT INTO class(Day, Date) VALUES('Monday', '".date('Y-m-d', $i)."')";
}
}