Código Javascript
:
Ver original$(".clase_insertar").submit(function(event){
event.preventDefault();
var d=$(this).find("#destacado").is(':checked');
$.ajax({
async:true,
type: "POST",
dataType: "html",
contentType: "application/x-www-form-urlencoded",
url: "insertar.php",
data:{destacado:d},
error: function(jqXHR, textStatus){
alert("Se produjo un error: " + textStatus);
}
});
});
Código PHP:
Ver originalif ($_POST['destacado'] == true) { $destacado = "si"; } else { $destacado = "no"; }
mysqli_query($conexion,"INSERT INTO post (destacado) VALUES ('$destacado')");
Intenta, así.
Saludos