I am sending the following data to save a form:
function editaFeira(id, descricao){
if (confirm("Confirma a alteração de " + descricao + "?"))
{
$.ajax({
type: "POST",
url: "functions/editarFeira.php",
data: {id: id,
descricao: $("#descricao").val(),
horario: $("#horario").val(),
pagamento: $("#pagamento").val(),
quem: $("#quem").val(),
//QUERO BOTAR A IMAGEM AQUI!!!
},
success: function(data) {
if (data == 'ok'){
alert(descricao + ' editado com sucesso!');
listaFeira();
}
}
});
}
}
I can send all the common data, but I do not know how to pass the image data.
How do I tell php that an upload exists?