我想輸出查詢的結果在頁面上的文本,所以我可以看到它的樣子。問題是如果我使用如下所示的回聲或者甚至使用打印,我會收到錯誤。無法將對象轉換爲字符串
我收到的錯誤是一些關於不能夠將對象轉換成字符串
我的問題是什麼是網頁上輸出查詢結果的最佳方式?
下面是代碼:
$answersql = "INSERT INTO Answer (Answer)
VALUES (?)";
if (!$insertanswer = $mysqli->prepare($answersql)) {
// Handle errors with prepare operation here
}
$insertanswer->bind_param("s", $_POST['value'][$i]);
//$insertanswer->execute();
echo $insertanswer;
if ($insertanswer->errno) {
// Handle query error here
}
$insertanswer->close();
你不想在那裏輸出結果,你試圖回顯一個pdo對象。你到底想要什麼? –
這是PDO指南。您可能正在尋找一種方法來檢查受影響的行或其他東西,因爲上面的查詢是一個插入。 http://www.phpro.org/tutorials/Introduction-to-PHP-PDO.html –
PDO很不錯,但他使用的是[MySQL改進的驅動程序](http://php.net/manual/en/) book.mysqli.php),而不是PDO。 –