How to create a drop down navigation of the current week and previous weeks up to four in php.

$date = '04/24/20012';
$ts = strtotime($date);
$year = date('o', $ts);
$week = date('W', $ts);
for($i = 1; $i <= 7; $i++) {
$ts = strtotime($year.'W'.$week.$i);
print date("m/d/Y l", $ts) . "
";
}
This code populate the drop down with current week but what i want is to populate the drop down with previous four weeks.