0
$query_check_domain_exists = "SELECT * FROM schools where domain ='$email_domain'";
$result_check_domain_exists = mysqli_query($d_schools, $query_check_domain_exists);
$school_ID_result = ?

$ school_ID_result変数には、検索したばかりの行のschool_ID(主キー)が含まれている必要があります(1つだけになります)。

4

1 に答える 1

1

mysqli_fetch_assoc()を追加してschool_IDから、配列から取得します。

$query_check_domain_exists = "SELECT * FROM schools where domain ='$email_domain'";
$result_check_domain_exists = mysqli_query($d_schools, $query_check_domain_exists);
$row = mysqli_fetch_assoc($result);
$school_ID_result = $row['school_ID'];
于 2012-08-26T02:43:04.817 に答える