ok here what I came up withso far...it has a weird result that im not looking for though, if you look at the first 2 line you see I have it show the output of that = Sunday the 19th and Wednsday 19th, both of these should say Tuesday the 19th since that would be today
<?php
$line['dob'] = '1990-02-19'; //shows Sunday 19th
//$line['dob'] = '1989-02-20'; //shows Wednesday 19th
$cur_date = date($line['dob']);
$cur_date_day = substr($cur_date, 8, 2);
$start_date = date("l jS", mktime(0, 0, $cur_date_day, $cur_date_day));
echo '<div align="center">' .$start_date. '</div>';
?>