Here is the code I'm using:
$query = "SELECT title, date_of_hire FROM aci_employees WHERE username = '$emp'";
$result = mysql_query($query);
if($result)
{
while($key = mysql_fetch_array($result))
{
print "<tr>";
print "<td class='timeSheetDay' colspan='8'>";
print "Date of Hire: " . $key['date_of_hire'];
$newDateOfHire = DATE_ADD($key['date_of_hire'], INTERVAL 5 DAY);
print "<br/>Updated Date of Hire: " . $newDateOfHire;
print "</td>";
}
}
Hopefully this helps.