廣告2


適合宜蘭旅遊的出租套房(土水師的家)
想體驗獨特的藝術空間,感受老闆對每個房間的用心,歡迎來土水師的家。
電話:0918667109 林先生
地址:宜蘭縣礁溪鄉和平路75號
註:記得跟老闆說,"我是阿志的朋友,請給我優惠一點"。

2015年3月4日 星期三

[CodeIgniter]view圖片路徑的設定

Controller的部分
 public function __construct()
 {
  parent::__construct();
  $this->load->library('myclass');  //自定函數
  $this->load->helper('url');  
 }


View的部分
架構
\application
\system
\index.php
\images\101.jpg

方法一
<img src="<?=base_url();?>images/101.jpg">

方法二
<img src="/images/101.jpg">   //但要移除首頁 index.php

沒有留言:

張貼留言