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.

I know how to create pagination and generate a table containing information from database in codeigniter, but I don't how to display the serial numbers for each row in the table. Example:

SL.  Name           Email
1.  Srijon      example@yahoo.com
2.  Jake        jake@yahoo.com

Would you please kindly show me how to do that? Thanks in advance

Here is the controller for how I create pagination and generate table (without serial numbers)

 function index(){

            $this->load->library('pagination');
            $this->load->library('table');
            $this->table->set_heading('Student ID','Student Name','Batch','Edit','Delete');

            $config['base_url'] = 'http://localhost/coaching/index.php/student_list/index';
            $config['total_rows'] = $this->db->get('student')->num_rows();
            $config['per_page'] = 15;
            $config['num_links'] = 20;
            $config['full_tag_open'] = '<div id="pagination" align="center">';
            $config['full_tag_close'] = '</div>';

            $this->pagination->initialize($config);
            $data['tab'] = "Student List";              
            $this->load->model('mod_studentlist');
            $data['records']= $this->mod_studentlist->student_list();
            $data['main_content']='studentlist';
            $this->load->view('includes/template',$data);

        }   

Here's my model

                function student_list()
    {   
        $config['per_page'] = 10;
        $this->db->select('studentid, studentname, batch');
        $this->db->order_by("studentid", "desc"); 
        $rows = $this->db->get('student',$config['per_page'],$this->uri->segment(3))->result_array();


        foreach ($rows as $count => $row)
            {
             $rows[$count]['studentname'] = anchor('student_list/get/'.$row['studentid'],$row['studentname']);
             $rows[$count]['Edit'] = anchor('update_student/update/'.$row['studentid'],'Update');
             $rows[$count]['Delete'] = anchor('report/'.$row['studentid'],'Delete');

            }
        return $rows;
    }

Here's my view file

                 <?php echo $this->table->generate($records);?>
                    <?php  echo $this->pagination->create_links();?>
                    <script type="text/javascript" charset="utf-8">
                        $('tr:odd').css('background','#EAEAEA');
                        </script>
share|improve this question

2 Answers

up vote 1 down vote accepted

You should create a variable inside your model function:

<?php
function student_list()
{   
    $config['per_page'] = 10;
    $this->db->select('studentid, studentname, batch');
    $this->db->order_by("studentid", "desc"); 
    $rows = $this->db->get('student',$config['per_page'],$this->uri->segment(3))->result_array();

    $sl = $this->uri->segment(3) + 1; // so that it begins from 1 not 0

    foreach ($rows as $count => $row)
        {
         array_unshift($rows[$count], $sl.'.');
         $sl = $sl + 1;

         $rows[$count]['studentname'] = anchor('student_list/get/'.$row['studentid'],$row['studentname']);
         $rows[$count]['Edit'] = anchor('update_student/update/'.$row['studentid'],'Update');
         $rows[$count]['Delete'] = anchor('report/'.$row['studentid'],'Delete');
        }
    return $rows;
}

and modify your controller:

<?php
function index() {
    $this->load->library('pagination');
    $this->load->library('table');
    $this->table->set_heading('SL.', 'Student ID','Student Name','Batch','Edit','Delete');
    ....
share|improve this answer
Thank you very much for you help. I am getting the serial number but it is showing under the batch column which is suppose to be shown under the SL column. Would you please kindly take a look at this matter? Thanks in advance :) – black_belt Sep 19 '11 at 7:44
I've modified the code. Using array_unshift function adds element to the beginning of the array, that makes serial number show up in the first column. – cenanozen Sep 19 '11 at 8:48
Thank you very much Cenanozen. It is now working perfectly. :) – black_belt Sep 19 '11 at 12:05

Codeigniter has a great Table library to display data in html table format. Adding a Serial No is sometime required to a table, but Row num is not easily provided by MySQL hence while using Table library this function is added to do the job.

Here goes the code:

 /**  
    * Set the serial no  
    *  
    * Add serial no to left of table  
    *  
    * @access  public  
    * @param  mixed  
    * @return  mixed  
    */  
   function add_sr_no(&$arr)  
   {  if (!is_array($arr)) return $arr;  
     $i=1;  
     foreach ($arr as &$values) {        
       if (!is_array($values))  
         break;  
       else  
         array_unshift($values, $i++);  
     }      
     return $arr;  
   }  

Just add these lines to table.php in library. Usage:

$rows = $query->result_array(); 
$this->table->add_sr_no($rows); 

Don't forget to add first column 'Sr No' in set_heading. Read the post here. Hope this helps.

share|improve this answer

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.