Reversing date format in php form - TechRepublic
Question
March 2, 2023 at 09:24 PM
rob167

Reversing date format in php form

by rob167 . Updated 3 years, 3 months ago

I have a simple php contact form with a date picker.
However, the email received from the form reverses the date eg. instead of 20/3/2023 I get 2023/3/20.

My backend form processor file:

//Assign data form array
$date = $_POST[‘bookdate’];

// Construct email body
$body_message .= ‘Preferred Date: ‘ . $date . “\r\n”;

thanks

All Comments