2016-04-02 168 views
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" /> 
+0

刪除while循環只定義你的變量$ rida –

+0

難以檢查查詢是否正確執行? – Xorifelse

回答

0

我想在你的代碼你要爲你所訪問的可變出錯誤未定義的索引網址while循環。請嘗試以下代碼:

<?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" /> 
<?php endwhile; ?> 
0

您應該重新檢查$ rida。在使用「echo var_dump($ rida);」之後,您將知道數組中的所有參數。你可以選擇信任列表