I would like to connect a phonegap apple application with a php file. I have used this javascript function to do this
$.post(myphpfileUrl, { login: loginName, password:loginPassword },
function(data) {
// alert(data);
}else{
alert("connexion problems");
}
});
And this is my phpfile
<?php exit("youppieee");?>
But I didn’t have answer with my iPhone. I have answer just with my android.
Finnaly I have resolve my problems. I was call a ip adresse of my server (123.45.67.89/myfolder/myphpFile) but the problems was resolved in the moment of I calling the server domaineName(ex:mydomaineName/myfolder/myphpFile)