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>";
}
?>
我把它編輯到 Masoman 2013-02-19 21:37:17
我試過這個 Masoman 2013-02-19 21:38:40
@Masoman html的外觀如何? – jeroen 2013-02-19 21:40:47