我正在开发一个 android 应用程序,它使用 PHP/MySQL 将数据从应用程序发送到服务器,以便注册/登录用户。我已经编写了 Javascript 和 PHP 文件来发送和接收 JSON 数据并将其插入 MySQL 数据库。我遇到的问题是如何处理来自 PHP 的不同响应。
示例:
<?php
//decode json object
$json = file_get_contents('php://input');
$obj = json_decode($json);
//variables
$user_firstname = $obj->{'user_firstname'};
$user_lastname = $obj->{'user_lastname'};
$user_email = $obj->{'user_email'};
$user_password = $obj->{'user_password'};
if([variables] != null){
//check for an existing email in db
mysql_query("Check if email exists");
if(email exist){
//pass a response to java file
return user_exists;
die();
}else{
//success
return success;
}
}
?>
我想要的只是处理这些不同的返回值,以便在 android 应用程序中与用户进行交互。