CodeIgniter Forums
Uri segment not working - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Uri segment not working (/showthread.php?tid=59899)



Uri segment not working - El Forum - 12-06-2013

[eluser]huangxiao[/eluser]
HI , I need some help please, i don't understand why uri segment is not working....it shows Object not found.

this is my controller....
Code:
class Firstpage extends CI_Controller {

   function index(){
        $site['content']='home';
        $this->load->view('includes/template',$site);

}


   function pagesite(){

    $p['page'] = $this->uri->segment(2);

     $this->load->view('pageviews',$p);

   }


}


this is my menuview

Code:
<li ><a href="&lt;?php echo base_url();?&gt;pagesite/home">Home</a></li>
  <li><a href="&lt;?php echo base_url();?&gt;pagesite/gallery">Gallery</a></li>

when i click the gallery the url will be like this.

Quote:http://localhost/mytest/pagesite/gallery

but it shows Object not found...can you help me please how do i fix this.


Thank you in advance.



Uri segment not working - El Forum - 12-06-2013

[eluser]rad11[/eluser]
Did you make, a function in pagesite controller named gallery or home ?


Uri segment not working - El Forum - 12-06-2013

[eluser]CroNiX[/eluser]
Your anchors are missing the controller name, firstpage.
Code:
<li ><a href="&lt;?php echo base_url();?&gt;firstpage/pagesite/home">Home</a></li>

And I believe this would be segment 3. Segment 1 = controller, segment 2 = method, segments 3+ are parameters.
Code:
$p['page'] = $this->uri->segment(3);



Uri segment not working - El Forum - 12-11-2013

[eluser]Kiran K[/eluser]
I think , what CroNiX said is right.