OK, Now that I know how to add minutes to a datetime field...
I need to be able to take a specific date time as in NOW...
Then add 30 days to it, and have record that date at 19:00:00 as an expiration date time
I start by capturing the current time (for display on the screen)
$current=(date('Y-m-d G:i:s'));
Then I want to display in the same format what the expiration date and time will be in 30 days at 1900 hours...
I've tried multiple variations of strtotime and date formatting, etc. but haven't had any luck
thanks in advance
Douglas