It's a silly question, but how can i pass multiple variables through ajax into php? I tried this but doesn't quite suits my needs:
function modifica(estado){
$.ajax({
type: "GET",
datatype: "html",
url: 'icallverifica.php',
data: "verifica=1$other=4&gethis="+alerta,
success: function(data) {
alert(data);
}
});
}
EDIT:
Probably it's this:
data: {
verifica : "xxx",
numero : "yyy"
}
But i'll wait for the gurus to help
$instead of an&in your querystring?