i need a little help here,
i want using paging codeigniter
here my piece code for showing the paging
$this->load->library("pagination");
$config = array();
$key = $this->input->get_post('qfront');
$config["base_url"] = base_url() . "source/";
$config["total_rows"] = $this->fetch_count($key)->count;
$config["per_page"] = 10;
$choice = $config["total_rows"] / $config["per_page"];
$config["uri_segment"] = 2;
$config["num_links"] = round($choice);
$config['full_tag_open'] = '<div class="pagination"><ul>';
$config['full_tag_close'] = '</ul></div><!--pagination-->';
$config['first_link'] = '« First';
$config['first_tag_open'] = '<li class="prev page">';
$config['first_tag_close'] = '</li>';
$config['last_link'] = 'Last »';
$config['last_tag_open'] = '<li class="next page">';
$config['last_tag_close'] = '</li>';
$config['next_link'] = 'Next →';
$config['next_tag_open'] = '<li class="next page">';
$config['next_tag_close'] = '</li>';
$config['prev_link'] = '← Previous';
$config['prev_tag_open'] = '<li class="prev page">';
$config['prev_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="active"><a href="">';
$config['cur_tag_close'] = '</a></li>';
$config['num_tag_open'] = '<li class="page">';
$config['num_tag_close'] = '</li>';
$this->pagination->initialize($config);
$page = ($this->uri->segment(2)) ? $this->uri->segment(2) : 0;
$data["results"] = $this->fetch_result($config["per_page"], $page, $key);
$data["links"] = $this->pagination->create_links();
$data["key"] = $key;
$this->load->view("page", $data);
in my view :
<?php echo $links; ?>
and what i got is
how can i make like <-prev 1 2 3 4 5 . . . 200 next->
is it possible? or maybe a little nice css :D (i'm so stupid in css >,<)