<?php
include("db_config.php");
$myusername = $_GET['username'];
$mypassword = $_GET['password'];
$sql="SELECT id FROM tablename WHERE username='$myusername' and password='$mypassword'";
echo $sql;
$result=mysql_query($sql);
$row=mysql_fetch_array($result);
$active=$row['active'];
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1)
{
echo "<strong> <font size='18'>Login Success</font></strong>";
}
else
{
echo "<strong> <font size='18'>Login Failed</font></strong>";
}
?>
我尝试了成功的响应数组..但是在java文件中我收到它..显示为空..我正在使用这条线来接收成功
success=json.getInt(TAG_SUCCESS);
我还在我的 JSON 解析器类中使用它来检查服务器是否返回成功。
if (response.getStatusLine().getStatusCode() == 200)
而且登录也给出了登录失败..虽然我输入了数据库中存在的用户名
任何人都可以帮助我吗?