PHP版本:7.0爲什麼這個SQL沒有插入到數據庫中?
腳本從不同的網站發送數據。
出於某種原因,數據沒有被插入到數據庫中,因爲它應該是,我不認爲我有任何SQL錯誤(這是用PDO完成的)。
這裏是所包含的功能代碼:
<?php
function escape($string){
return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
}
?>
腳本代碼:
<html>
<head>
<title>Data from Roblox</title>
<h3>Data from Roblox</h3>
</head>
<body>
<?php
include '../includes/connection.php';
include '../scripts/functions.php'; //Remove if unknown error as well as the escapes
error_reporting(E_ALL);
ini_set('display_errors', 1);
$array = json_decode(file_get_contents('php://input'),1);
$SenderName = escape($array['SenderName']);
$SenderID = escape($array['SenderID']);
$PlayerName = escape($array['PlayerName']);
$PlayerID = escape($array['PlayerID']);
$Reason = escape($array['Reason']);
$PlaceLink = escape($array['PlaceLink']);
if(!$Reason){ $Reason = "Reason not provided."; }
if($SenderName !=NULL and $SenderID != NULL and $PlayerName != NULL and $PlayerID !=NULL and $PlaceLink !=NULL){
$query = $handler->prepare("INSERT INTO PlayerBans (`ID`, `Username`,`Reason`, `BannedDate`, `BannedBy`, `BannedAt`) VALUES (:pid, :pname, :reason, NOW(), :sname, :pl)");
$query->bindParam(':pid', $PlayerID);
$query->bindParam(':pname', $PlayerName);
$query->bindParam(':reason', $Reason);
$sender = $SenderName . " - " . $SenderID;
$query->bindParam(':sname', $sender);
$query->bindParam(':pl', $PlaceLink);
$query->execute();
}
?>
</body>
</html>
當去在我的網頁瀏覽器腳本URL時,HTML顯示出來,並沒有錯誤。
不相關...你在插入語句之前檢查'if ...'是否在你的if語句中兩次'$ PlaceLink!= NULL' ... – IzzEps
謝謝。我解決了這個問題。這會導致問題嗎? – Austin
不太可能...您確認您的數據庫連接正常工作嗎? – IzzEps