1
我想顯示從MySQL數據庫的圖像URL到我的網站。它被保存爲我的數據庫中的URL。圖片來自MYSQL數據庫(PHP,MySql)
http://www.upload.ee/image/5697422/prague-1168302_1920.jpg
這是應顯示爲$裏達[「pilt」]
<?php
$paring = 'SELECT * FROM postitus ORDER BY id';
$valjund = $yhendus->query($paring);
while($rida = mysqli_fetch_assoc($valjund))
?>
<img class="img-thumbnail" alt="city" src="<?php echo $rida['pilt']; ?>" style="width:250px;height:200px" />
刪除while循環只定義你的變量$ rida –
難以檢查查詢是否正確執行? – Xorifelse