<?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ファイルで私はそれを受け取ります..Nullを表示しています..この行を使用して成功を受け取ります
success=json.getInt(TAG_SUCCESS);
また、JSON パーサー クラスでこれを使用して、サーバーが成功を返すかどうかを確認しました。
if (response.getStatusLine().getStatusCode() == 200)
また、ログインはログインに失敗しました..データベースに存在するユーザー名を入力します
誰でも私を助けることができますか??