Welcome Guest, Not a member yet? Register   Sign In
Error Number: 1054?
#1

[eluser]SaSa[/eluser]
why this code have error?
With respect
Code:
search_customer = 1;//$this->input->post('search_customer');
    $where = "id=$search_customer OR name=$search_customer";
    $query = $this->db->get_where('customer', $where);
    if($query->num_rows()==0){
                echo '0';
            }else{
                $data = array();
                foreach ($query->result() as $row)
                {
                   $data[] = $row;
                }
                echo json_encode($data);
            }
error:
Code:
A Database Error Occurred
    Error Number: 1054
    
    Unknown column 'id=1' in 'where clause'
    
    SELECT * FROM (`customer`) WHERE `id=1` OR name=1
    
    Filename: D:\xampp\htdocs\mehdi\system\database\DB_driver.php
    
    Line Number: 330


Messages In This Thread
Error Number: 1054? - by El Forum - 08-01-2011, 03:57 PM
Error Number: 1054? - by El Forum - 08-01-2011, 04:05 PM
Error Number: 1054? - by El Forum - 08-01-2011, 04:11 PM
Error Number: 1054? - by El Forum - 08-01-2011, 04:15 PM
Error Number: 1054? - by El Forum - 08-01-2011, 04:21 PM
Error Number: 1054? - by El Forum - 08-01-2011, 05:57 PM
Error Number: 1054? - by El Forum - 08-01-2011, 07:27 PM
Error Number: 1054? - by El Forum - 08-01-2011, 07:31 PM
Error Number: 1054? - by El Forum - 08-02-2011, 02:23 AM
Error Number: 1054? - by El Forum - 08-02-2011, 04:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB