如何在codeigniter中呈现视图时传递数据或数据数组?

时间:2015-10-06 22:39:32

标签: php codeigniter

我的网址是:

  

http://localhost/CodeIgniterCms/admin/dashboard/otherpages/123   其中,

Codeigniter Cms

- admin

-- dashboard (the controller)

--- otherpages (Method)

控制器代码

public function otherpages($somedata) {
   $this->render('admin/second_view',$somedata);
}

second_view.php中的代码

<pre>
   <div class="container">
     <?php echo $somedata;?>
    </div>
</pre>

但它正在抛出错误 无法加载请求的文件:admin / 123.php

1 个答案:

答案 0 :(得分:0)

otherpages函数中尝试此操作:

$data['somedata'] = $somedata; <br/>
$this->load->view('admin/second_view',$data);