请我在数据库 nassk 中有两个表(keygen 和 sub2)。我创建了一个表格,其中 sub2 keygen 字段是 keygenID、Keygen 而 sub2 字段是 SubID、Keygen、userID、Date_Sub
我要更正我的表单 Sub2 上的代码,其中包含 $ID、$KeyGen、$userID 等字段,以便能够检查数据库,如果表单字段 $Keygey 是 == 到表 keygen 字段 Keygen,那么表单应该提交否则它应该引发错误。
下面是我用过的代码
global $subscription;
$db = new clsDBConnection1();
$SQL = "SELECT KeyGen FROM keygen";
$Result = mysqli_query($SQL);
if(mysqli_num_rows($Result) > 0)
if (($Result) !== $subscription->KeyGen->GetValue())
{
$subscription->Errors->addError("The values of Password and Confirm fields do not match.");
}
}
}