I'm trying to convert the received date through $_POST
but I got
PHP Fatal error: Call to a member function format() on a non-object
Here is my code:
$time = $_POST['order_date'];
$date = DateTime::createFromFormat( 'Y-m-d H:i:s', $time, new DateTimeZone( 'America/New_York'));
$get_data = $date->format( 'Y-m-d H'); //here is the problem
What is the problem with my code?
Can anybody help please?