我有这个脚本将新用户添加到 MySql,现在我已经为黑名单名称创建了辅助 Mysql 表。所以我希望 MySql 在允许插入数据之前检查黑名单名称。
$all = implode(",",$_POST);
$all = explode(",",$all);
$insert = "INSERT INTO name VALUES (";
for ($x=0;$x<5;$x++)
{
$all[$x] = clean($all[$x]);
if ($all[$x] == "" || strlen($all[$x]) > 300)
die("<p>Please fill in the whole form." . $x);
$insert .= "'" . $all[$x] . "',";
}
$insert .= "'')";
$res = @mysql_query($insert) ;
我有改变
$insert = "INSERT INTO name VALUES (";
for ($x=0;$x<5;$x++) NOT IN (SELECT `blacklist` FROM `exclude`)
但没有得到我要找的东西。我该如何解决?