何らかの理由で、MySQLi クエリに変数が表示されず、while(){ 関数の間にあるすべてのコードが表示されません。
どんな助けでも大歓迎です
$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()) {
?>