I have a question.
You can change the date I receive from the BD with my javascript and show it as: "February 14, 2018", since I currently receive "2018-02-14"
this is my JS
$.ajax({
url: 'datos.php',
type: 'post',
data: {fechas : id},
dataType: 'json',
success:function(response) {
$("#Fecha_ini").html(response.fecha_ini);
$("#Fecha_fin").html(response.fecha_fin);
}
});