I got the solution;Here it goes:
<?php
// convert to timestamp
$start = strtotime( '2006-05-10 00:00:00');
$end = strtotime( '2007-08-15 00:00:00');
// initialize an array to hold the saturdays
$saturdays = array();
$monthSaturdays = array();
// this is for question 1
for ( $i = $start; $i <= $end; $i += 86400 ) {
if ( (int)date( 'w', $i ) == 6 ) {
// store the saturdays
$saturdays[] = date( 'Y-m-d', $i );
}
}
// this is for question 2
for ( $i = $start; $i <= $end; $i += 86400 ) {
$currentMonth = date( 'Y-m', $i );
if ( ! isset( $monthSaturdays[$currentMonth] ) ) {
$monthSaturdays[$currentMonth] = array( null, null );
}
// store the first Saturday of the month (index 0 will hold the firs, index 1 will hold the last)
if ( ! isset( $monthSaturdays[$currentMonth][0] ) && (int)date( 'w', $i ) == 6 ) {
$monthSaturdays[$currentMonth][0] = date( 'Y-m-d', $i );
}
// the last Saturday will be automatically set
if ( (int)date( 'w', $i ) == 6 ) {
$monthSaturdays[$currentMonth][1] = date( 'Y-m-d', $i );
}
}
?>