Welcome Guest, Not a member yet? Register   Sign In
base_url not passsing the values
#1

[eluser]mady[/eluser]
Hi,


I have a function where i want to pass the values for searching and pagination, but its not working



This is my code



Code:
$this->load->library('pagination');
  $config = array();
  $config["base_url"] = site_url('movies/movies_view/$query_id/$sort_by/$sort_order');
  
  var_dump($config["base_url"]);
  
  
  $config['total_rows'] = $data['num_results'];
  $config['per_page'] = $limit;
  $config['uri_segment'] = 6;
  $config['enable_query_strings'] = TRUE;
  $this->pagination->initialize($config);
  $data['pagination'] = $this->pagination->create_links();


Messages In This Thread
base_url not passsing the values - by El Forum - 03-29-2012, 09:12 AM
base_url not passsing the values - by El Forum - 03-29-2012, 10:46 AM
base_url not passsing the values - by El Forum - 03-29-2012, 11:07 PM
base_url not passsing the values - by El Forum - 03-30-2012, 12:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB