由于某些原因,我的MySQLi查询没有显示任何变量,并且所有代码都在while(){function不显示之间。
感谢任何帮助
$stmt = $db->prepare("SELECT `postedby`,`headline`,`article`,`date`,`image`,`imagecaption` FROM `blogentries` WHERE `ID` = ? LIMIT 1,1");
//Prepare, bind and execute statement
$stmt->bind_param("i", $id);
$stmt->execute( ) or die ("Could not execute statement");
$stmt->store_result();
$stmt->bind_result($postedby, $headline, $article, $date, $image, $imagecaption);
while ($stmt->fetch()) {
?>