$(document).ready(function(){
$("#botao").click(function(){
$.ajax({
url:'../../../consulta.php',
type: 'POST',
var senha = document.getElementById('#senha').value;
data: { senhap: 'senha',
success: function (data){
// me disseram que aqui o PHP me retorna alguma coisa, mas como eu vou
//tratar o resultado que vier por aqui?
}
});
});
});
I really do not even know if the above code is totally right, could someone explain both the PHP return and the part of the "date {senh:: password ',}" already thank you!