Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my project, I am using pagination and I used these statements to get the page number detail:

$page=$this->uri->segment(3);
$this->session->set_userdata('page',$page);
echo $this->session->userdata('page');

When I print this session value in that page itself, I get the value correctly and when I click on the particular link and then print that data, I am getting the value like 'images'. Why is this happening?

However, when I write the statements like

$page=$this->uri->segment(2);
$this->session->set_userdata('page',$page);
echo $this->session->userdata('page');

it's working fine.

My URL is: http://localhost/CI/user/index/4

share|improve this question

3 Answers

I have the same problem with you, the session variable always get value 'images'. Then i realize that: if we made a session variable, then we must call redirect() directly. This is my example:

$page=$this->uri->segment(3);
$this->session->set_userdata('page',$page);
redirect('control/function2');

Then, you can get continue your code in the 'function2'.

share|improve this answer

Solved the issue by writing another function, setting the session and redirecting to above function like this:

function set_session(){
  $id=$this->uri->segment(3);
   $this->session->set_userdata('id',$id);
   redirect('set_uri_session');
}

function set_uri_session(){
$id=$this->uri->segment(3);
$this->session->set_userdata('id',$id);
echo $this->session->userdata('id');
}
share|improve this answer

You 3rd URI segment most likely is "images".

Try using $this->uri->uri_to_assoc() with a uri structure like this:

controller/method/param1/value1/page/3

...or even array_pop()ing $this->uri->segment_array() to get the page number, as it is almost always the last segment, and you can't always be sure how many total segments there will be.

Codeigniter's pagination class is pretty terrible, especially considering that it takes ~8 lines of code to set up. I feel for you and wish you the best of luck.

share|improve this answer
hi, its not working.My first page is localhost/CI/user/index. When I click on particulay page link,its like localhost/CI/user/index/2. So when I try to retrieve like $segs= $this->uri->segment_array();echo $segs[3];,It will generate an error in first link. – Nisha haridas Mar 30 '11 at 10:17
$page=$this->uri->segment(3); $this->session->set_userdata('page',$page); echo $this->session->userdata('page');In this statement i am getting the page number like 4 and when I click on another link in the same page that value changed to 'images'. – Nisha haridas Mar 30 '11 at 10:18
My code is working in opera..Not in other browsers. – Nisha haridas Mar 30 '11 at 11:57
Are you sure that the exact URI segment with your page number is always the third? It would help if you posted the url that's giving you an error. – Wesley Murch Mar 30 '11 at 18:46
when load the first time my url is : localhost/CI/user/index.When we click on the pagination link my url :localhost/CI/user/index/page_number. I tried with these statement also :$page=(int)$this->uri->segment(3); .In this case instead of images value I got 0(Zero). – Nisha haridas Mar 31 '11 at 3:55
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.