This should do what you want.
$current_date = strtotime( $getNotes["entry_time"]);
$get_newdate = mktime(date("H",$current_date)+2, date("i",$current_date), 0, date("m",$current_date), date("d",$current_date), date("Y",$current_date));
$niceEntryTime = date("m/d/Y G:i", $get_newdate);
- edit had a problem in the code that i just fixed *