$this->db->select("DATE_FORMAT(cliente.fecha_reserva, '%M %e, %Y') as formatted_date", FALSE);
This code gives me the following format: June 14, 2017
How do I get the format dd / mm / yyyy?
Thanks
$this->db->select("DATE_FORMAT(cliente.fecha_reserva, '%M %e, %Y') as formatted_date", FALSE);
This code gives me the following format: June 14, 2017
How do I get the format dd / mm / yyyy?
Thanks