CodeIgniter get URL parameters
How to fetch url parameters in the codeigniter.This is very simple.All data get as an array.
Example
http://www.mysite.com/index.php/deposit/11/3
index.php => 0
deposit => 1
11 => 2
3 => 3
Here is a method to get parameters.
First of all you have to load url helper, like this.
$this->load->helper('url');
 
Then,
$portid = $this->uri->segment(2); // get 11 $portid = $this->uri->segment(3); // get 3
That’s all.
What's your reaction?
                      
                    Excited        
                
                                0
            
                                        Happy
                
                                0
            
                                        In Love
                
                                0
            
                                        Not Sure
                
                                0
            
                                        Silly
                
                                0
             
                            
                                                        
                                                
					



