Need help with 'date' => $_REQUEST['date'] .'+ INTERVAL 12 HOUR',

2 posts by 1 authors in: Forums > CMS Builder
Last Post: October 14, 2016   (RSS)

By Mikey - October 14, 2016

I got this to work using the following combine... if anyone else needs help with a solution such as this.

Zicky

$eventPost_date = $_REQUEST['date'];
$eventPost_time = $_REQUEST['event_time'];
$combined_date_and_time = $eventPost_date . ' ' . $eventPost_time;

'date'      => $combined_date_and_time,