嘿傢伙我是codeigniter上的新手我想在不同的頁面上顯示multipe視圖..我創建一個頁面,在其上創建編輯按鈕,我希望當我點擊編輯按鈕我rediect另一頁.. ..我可以做到這一點。 。請幫助 這裏是我的代碼:如何在codeigniter中的不同頁面上顯示多個視圖
class Edit extends CI_Controller
{
function __construct()
{
parent::__construct();
}
function edit()
{
$this->load->helper('url');
if($this->input->post('edit') == True)
{
redirect('edit');
}
}
}
$ this-> load-> view('edit_view'); – AlphaMale 2013-02-09 06:23:26
請你詳細說明@AlphaMale – Jay 2013-02-09 06:28:37
請閱讀這裏的文檔:http://ellislab.com/codeigniter/user-guide/ – 2013-02-09 06:36:19