2
I have the following $_get :
if(!empty($_GET) && $_SERVER['REQUEST_METHOD'] == 'GET'){
$v_ocorrencia = $_GET['ocorrencia'];
$datainicio = $_GET['datainicio'];
$datafinal = $_GET['datafinal'];
echo 'valor recebido: '. $v_ocorrencia;
echo 'valor recebido: '. $v_datainicio." 00:00:00.000";
echo 'valor recebido: '. $v_datafinal." 00:00:00.000";
With the implode he returns to me the date:
valor recebido: 1
valor recebido: 2016-17-11 00:00:00.000
valor recebido: 2016-26-11 00:00:00.000
So far so good, but I can’t change the order of the date,:
Y-dd-mm
and I need it to be Y-mm-dd
Note: the date is coming from a Datepicker of the jquery