次のスクリプトを使用してゲストブックからスパム リンクを消去しています。クエリをコピーして phpmyadmin に貼り付けると問題なく動作します。次のスクリプトを php ファイルとして保存したブラウザで実行すると、「Couldn'tクエリを実行:". 私はそれを見てきましたが、ivが間違っていたことを確認できません.ivが見逃した明白な何かを見ることができますか?.
<?php
// Checks to see if the key value is set
if (isset($_GET['key'])) {
$key = $_GET['key'];
}
// If the key value isnt set give it a value of nothing
else
{$key = '';}
// Checks to see if the key value is valid to authenticate the user
if ($key == 'keycode'){
// If the key value is correct the user is granted access
$con = mysql_connect("localhost","user","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
// Select mysql db
mysql_select_db("towerroa_TRA", $con);
mysqli_query($con, "DELETE FROM `itsnb_phocaguestbook_items` WHERE `content` LIKE '%<a%'")or die ("Couldn't execute query: ".mysqli_error());
echo 'Spam Purged !';
}
else {
// Denies the user access if the key value isnt correct
echo '<h1>Access Denied !</h1>';}