我是codeigniter的新手,我試圖在視圖中顯示封面圖片welcome_message.php,但它似乎並未出現在我的瀏覽器中,而我不知道爲什麼。 我的控制器看起來像這樣我無法使用代碼點火器在我的視圖中加載圖像
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function index()
{
$this->load->view('welcome_message');
}
}
請有人幫助我。需要加載圖像我的觀點的部分是
<img src="images/images1.jpeg" width="600" height="260" />
的圖像文件夾中在同一個目錄中稱爲圖像
的,什麼是你查看'welcome_message'看起來像? –
張貼welcome_message視圖 – Saqueib
確保圖像到位和路徑是正確的 – Saqueib