SQLデータベース3つのテーブルが内部結合を使用しましたが、エラーが発生しました。画像にエラーが表示されています。問題が何であるか分かりません。Mysqlデータベース内部結合クエリエラーを返す
:
Regserver.php
<?php
include 'Connection.php';
$reg = $_GET['reg'];
$sql = "select RegNo,a.RollNo,b.Standard,b.stdid,c.DivisionID,c.Division,Std_Name as StudentName,Std_Address,DOB,ContactNo1 as FatherNo,ContactNo2 as MotherNo,
School_Name as SchoolName,Decide_Fees as DecideFees,ImagePath
from Std_Reg as a inner join StandardMaster as b on a.Standard = b.stdid
inner join DivisionMaster as c on a.Division =c.DivisionID
where RegNo= '$reg'";
//$sql = "select * from Std_Reg";
$stmt = sqlsrv_query($conn, $sql);
do {
while ($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC)){
$result[] = $row;
}
} while (sqlsrv_next_result($stmt));
if(count($result)>0)
{
$result1['status']=1;//"Login successfully";
array_push($result,$result1);
}
else
{
//$result[]="null";
$result1['status']=0;//"Record not found";
array_push($result,$result1);
}
sqlsrv_free_stmt($stmt);
sqlsrv_close($conn); //Close the connnectiokn first
echo json_encode($result); //You will get the encoded array variable
?>
エラーメッセージをテキストとして投稿できますか? – tan
Notice:未定義の変数:結果はC:\ wamp \ www \ Project \ Regserver.php 21行目 – Zala
注意:未定義の変数:結果はC:\ wamp \ www \ Project \ Regserver.php 21行目で – Zala