Setting a URL or URI as an Array Codeigniter -


i have been reading url helper , uri user guide in codeigniter, not sure if can have, url or uri link array.

example $data['action'] = $this->url->link('admin/dashboard');  

or

example $data['action'] = $this->uri->string('admin/dashboard'); 

or

example $data['action'] = $this->uri->segment('common/dashboard'); 

not sure correct way.

the right way is:

$data['action'] = site_url("admin/dashboard"); 

Comments

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -