Welcome Guest, Not a member yet? Register   Sign In
codeigniter's pagination offset not working
#5

[eluser]Blazetama[/eluser]
First, i would like to thanks to TheFuzzyOne and Rana who helped me kindly Big Grin

And, i want to say sorry because i made a "stupid" mistake which took me for hours to realize. The pagination is working perfectly, i just forget to use the
Code:
$offset
:

Before -> i use
Code:
$no = 1
:

Code:
$no = 1;
  foreach($data_umat as $list_temp)
  {
   $this->table->add_row(
    $no++,
    $list_temp->nama,
    $list_temp->kelas,
    $list_temp->alamat,
    $list_temp->tanggal_lahir,
    $list_temp->sekolah,
    $list_temp->no_tlpn,
    $list_temp->keterangan
   );
  }

Now (Working) :

Code:
foreach($data_umat as $list_temp)
  {
   $this->table->add_row(
    ++$offset,
    $list_temp->nama,
    $list_temp->kelas,
    $list_temp->alamat,
    $list_temp->tanggal_lahir,
    $list_temp->sekolah,
    $list_temp->no_tlpn,
    $list_temp->keterangan
   );
  }


Messages In This Thread
codeigniter's pagination offset not working - by El Forum - 05-04-2013, 09:29 AM
codeigniter's pagination offset not working - by El Forum - 05-04-2013, 10:15 AM
codeigniter's pagination offset not working - by El Forum - 05-05-2013, 07:09 AM
codeigniter's pagination offset not working - by El Forum - 05-06-2013, 03:18 AM
codeigniter's pagination offset not working - by El Forum - 05-06-2013, 04:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB