This is default featured post 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Senin, 20 Desember 2010
Jumat, 17 Desember 2010
javascript Cache in firefox
Kamis, 02 Desember 2010
Contoh Konfigurasi Pagination CodeIgniter
//contoh url index.php/folder/control/function/offset
//maka urutan offset adalah yang ke-4
$offset = $this->uri->segment(4);
$config['base_url'] = site_url() . '/admin/materi/index/';
$config['total_rows'] = $this->mmateri->get_count();
$config['per_page'] = 5;
$config['uri_segment'] = 4; //penting
$this->pagination->initialize($config);
$paginator=$this->pagination->create_links();
$data["offset"] = $offset;
$data['result'] = $this->mmateri->get_paged($config['per_page'],$offset);
$data['total_page'] = $paginator;
$this->load->view('admin/materi', $data);