Try something like this:
number your rows with an id from 1 to 52 (one for each week) then just do something like this (warning, not tested code, but you get the idea)
$jul=date("z"); # z returns julian date
$week = int($jul/7)+1;
$query = "select * from table where id=$week";