簡介:
查詢最後5 張影像:
To要從資料庫擷取最後5 張影像,您需要執行下列SQL 查詢:SELECT image FROM table_name ORDER BY id DESC LIMIT 5;
取得並顯示影像:
執行查詢後,您將使用while 循環來取得結果並顯示影像:<code class="php">$result = mysqli_query($db, $sql); while ($row = mysqli_fetch_array($result)) { echo "<img src='php/imgView.php?imgId=" . $row['image'] . "' />"; }</code>
imgView.php 檔案:
imgView.php 檔案負責從資料庫擷取影像資料並將其作為影像輸出:<code class="php"><?php $id = addslashes($_REQUEST['imgId']); $image = mysqli_query($db, "SELECT image FROM table_name WHERE id=$id"); $image = mysqli_fetch_assoc($image); $image = $image['image']; header("Content-type: image/jpeg"); echo $image; ?></code>
與您的程式碼整合:
要將此功能整合到在您現有的程式碼中,您可以:以上是如何以圖庫格式顯示 MySQL 資料庫中最近上傳的 5 張圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!