All pastes #2049397 Raw Edit

Someone

public php v1 · immutable
#2049397 ·published 2011-04-22 16:05 UTC
rendered paste body
function email_meeting_reminder($row) {	$today = date("Y-m-d");	$today_unix_time = strtotime($today);	$newtime = $today_unix_time - (86400*3);	$newtime = format_date($newtime);	echo $newtime;}function format_date($date) {	$date_sql = date("Y-m-d", strtotime($date));	return $date_sql;}