2013-02-19 76 views
0

我想從我的視圖從mysql路徑顯示圖像。 在我的mysql表中,我有一個名爲imgpath的行,文件位置是assets/images/acura_1.jpg 它從表格中正確顯示汽車信息,但實際圖像沒有顯示出來?謝謝!在codeigniter中顯示來自mysql的圖像

這裏是我的視圖代碼

<h1>Our Current Cars:</h1> 
        <?php foreach($images as $row) 
        { 

         echo "<br/>"; 
        ?> <img src = <?php echo $row->imgpath; ?> > 
        <?php "<br/> "; 
echo "<br/>"; 
echo "<font color = 'red'>"; 

echo $row->car_year . " " . $row->car_make . " " . $row->car_model . "<br/>"; 
echo "Lease Term: " . $row->car_lease . " Months" . "<br/>"; 
echo "Base Payment: " . "$" . $row->car_payment . "<br/>" ; 
echo "</font>"; 
} 

       ?> 

回答

1

我的猜測是,你是不是在Web站點的根和/assets文件夾。

,可以使用絕對路徑,爲你的形象:

<img src = "/<?php echo $row->imgpath; ?>" > 
      ^here 

如果一些圖像可能會以斜線開始,你可以使用ltrim來擺脫他們:

<img src = "/<?php echo ltrim($row->imgpath, '/'); ?>" > 
+0

我把它編輯到 Masoman 2013-02-19 21:37:17

+0

我試過這個 Masoman 2013-02-19 21:38:40

+0

@Masoman html的外觀如何? – jeroen 2013-02-19 21:40:47

相關問題