ログイン用のリモートPHPファイルにユーザーログインが渡されるAndroidアプリを作成しています。私はJSONを使用しています。コードは以下です
function loginToWebsite(){
$.ajax({
url: "mywebsite/db.php",
type: "POST",
data: "username=" + $("#emailid").val()+"&password=" + $("#password").val(),
datatype:"json",
success: function(status)
{
if(status.success == false)
{
$("#lable")
.attr('class', 'ui-state-error')
.html('<strong>ERROR</strong>: Your details were incorrect.<br />');
}
else {
$("#lable")
.attr('class', 'ui-state-highlight')
.html('<strong>PERFECT</strong>: You may proceed. Good times.<br />');
}
}
});
そのため、実行のためにリモートphpファイルにuidとパスワードを送信できません。私のコードにエラーがある場合は、私を案内してください。