Ravi Rajindu
Ravi Rajindu

Reputation: 390

How to redirect to the same page with data in codeigniter

I want to redirect to the same page with data array.

$this->load->view('view_name',$data);  

like this how can I refresh the same page with data. please help ?

Upvotes: 2

Views: 12806

Answers (1)

tomexsans
tomexsans

Reputation: 4527

You can use flashdata for that.

$data = array(
  'data1' => 'value',
  'data2' => 'value'
);

$this->session->set_flashdata('mydata',$data);
redirect('controller');

check data the data on your controller by.

var_dump($this->session->flashdata('mydata'));

http://www.codeigniter.com/userguide2/libraries/sessions.html

Upvotes: 2

Related Questions