這部分代碼是我得到錯誤的地方..我遵循PHP編碼中的所有結構。我是新來的PHP,但我是一個軟件開發商使用vb.net ..即時通訊過渡我的知識,但不能完全弄清楚這裏錯了什麼..錯誤說**調用成員函數execute()布爾在C: \ XAMPP \ htdocs中\門票上線\ ictso_main.php 22 **調用成員函數execute()布爾在第22行C: xampp htdocs Tickets ictso_main.php
if (isset($_POST ['sendNow'])){
$digitx="0001";
$requester="Zoren";
$probs="Hello";
$callbkNo="Hi";
$dept="Hallo";
$query =$db->prepare("INSERT INTO tblrequest (TicketID, xRequester, xProblem, xDepartment, CallbackNo) VALUES(?,?,?,?,?)");
$query=$query->bind_param('sssss',$digitx, $requester,$probs, $dept, $callbkNo);
$query->execute();
$db->close();
}
Click here for the screeenshot of my code
不要覆蓋變量。 – Qirel
你是指什麼變量先生? –