I need to display the date of Tuesday for this week, next week, and the week after that.
For example,
$first_date = date('m/d/y',strtotime('tuesday this week')); =>result => '01/10/13'
$second_date = date('m/d/y',strtotime('tuesday next week')); =>result => '08/10/13'
$third_date = -----This one i needed-------- =>result => '15/10/13'