这是一个 Android 应用程序,我使用的是用 php 编写的 web 服务。我有 3 个 php 脚本 - dbconnect.php(这包含所有 db 变量)、login.php(这将验证用户凭据并打开一个会话)和 showCases.php(它将返回从获取的 userID 变量中获取的票证列表login.php 脚本)
但是,由于某种原因,当我请求信息 showCases.php 时,我有:“用户 'ODBC'@'localhost' 的访问被拒绝(使用密码:否)”。我不太确定会话是否正确使用。
这是 login.php 脚本:
//Displaying the error if sql query is incorrect
if(!$result){
die(mysql_error());
}else{
$row = mysql_fetch_assoc($result);
$first_name = $row['first_name'];
$id = $row['id'];
}
//If found, number of rows must be 1
if($num_rows==0){
$success = 0;
}else{
//creating session
session_start();
session_register("$username");
session_register("$password");
$success = 1;
}
$arr = array(
array('username' => $username, 'id'=>$id,'success'=>$success, 'first_name'=>$first_name));
#array('success'=> $success));
echo json_encode((array('Username'=>$arr)));
mysql_close();
?>
该脚本会将用户名数组返回给 android 应用程序以供其处理验证。验证后,android 应用程序将从此 php 脚本请求票证。
session_start();
#require('dbconnect.php');
require_once('login.php');
$response=array();
$response['infos'] = array();
//execute the SQL query and return records
$result = mysql_query("SELECT cases.id, cases.account_id.... casesvisibility.user_id = '$id'......";
//Displaying the error if sql query is incorrect
if(!$result){
die(mysql_error());
}
$num_rows = mysql_num_rows($result);
$arr = array();
if($num_rows!=0){
while ($row = mysql_fetch_assoc($result)) {
$arr['cases_id']=$row['cases.id'];
$infos[]=$arr;
}
}else{
#$arr['existingCases']=$row['0'];
$arr['cases_id']=0;
$infos[]=$arr;
}
#Echoing a JSONArray
print(json_encode(array('Cases'=>$infos)));
//close the connection
mysql_close();
?>
我不太确定这是我希望它实现的功能的编写良好的代码。当我从 android 应用程序调用此脚本时,我首先从登录脚本中获取 JSON_array,它告诉我:
{"Username":[{"username":"","id":null,"success":0,"first_name":null}]}id is
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in E:\wamp\www\mobile.dcl.mu\webserver\showCases.php on line 18
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in E:\wamp\www\mobile.dcl.mu\webserver\showCases.php on line 18
用户 'ODBC'@'localhost' 的访问被拒绝(使用密码:否)
我知道我正在尝试使用另一个 php 脚本中的变量。
你能帮我解决这个问题吗?
谢谢