Welcome Guest, Not a member yet? Register   Sign In
pagination help
#1

[eluser]dadamssg[/eluser]
im getting a mysql error with my query for some reason...

heres the function in my model
Code:
function get_events($num, $offset)
     {
    $query = $this->db->query("SELECT * FROM test WHERE end >= NOW() ORDER BY ASC LIMIT $num, $offset");    
    return $query;
     }

and heres my controller
Code:
$this->load->library('pagination');
        $config['base_url'] = 'http://mysite.com/mains/index/';
        $config['total_rows'] = $this->db->count_all('test');
        $config['per_page'] = '5';
        $this->pagination->initialize($config);
        
        //load the model and get results
        $this->load->model('Frontmodel');
        $data['query'] = $this->Frontmodel->get_events($config['per_page'],$this->uri->segment(3));

heres the error im getting

Quote:A Database Error Occurred

Error Number: 1064

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ASC LIMIT 5, 3' at line 1

SELECT * FROM test WHERE end >= NOW() ORDER BY ASC LIMIT 5, 3

any idea whats goin on here?


Messages In This Thread
pagination help - by El Forum - 01-09-2010, 07:34 PM
pagination help - by El Forum - 01-09-2010, 07:54 PM
pagination help - by El Forum - 01-09-2010, 08:09 PM
pagination help - by El Forum - 01-09-2010, 08:16 PM
pagination help - by El Forum - 01-09-2010, 08:27 PM
pagination help - by El Forum - 01-09-2010, 08:44 PM
pagination help - by El Forum - 01-09-2010, 08:47 PM
pagination help - by El Forum - 01-09-2010, 08:55 PM
pagination help - by El Forum - 01-09-2010, 09:05 PM
pagination help - by El Forum - 01-09-2010, 09:08 PM
pagination help - by El Forum - 01-09-2010, 09:18 PM
pagination help - by El Forum - 01-09-2010, 09:21 PM
pagination help - by El Forum - 01-09-2010, 09:31 PM
pagination help - by El Forum - 01-09-2010, 09:33 PM
pagination help - by El Forum - 01-09-2010, 09:34 PM
pagination help - by El Forum - 01-09-2010, 09:36 PM
pagination help - by El Forum - 01-09-2010, 09:40 PM
pagination help - by El Forum - 01-09-2010, 09:49 PM
pagination help - by El Forum - 01-09-2010, 10:01 PM
pagination help - by El Forum - 01-09-2010, 10:02 PM
pagination help - by El Forum - 01-09-2010, 10:05 PM
pagination help - by El Forum - 01-09-2010, 10:06 PM
pagination help - by El Forum - 01-09-2010, 10:10 PM
pagination help - by El Forum - 01-09-2010, 10:19 PM
pagination help - by El Forum - 01-10-2010, 07:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB