asi masomenos es la funcion , los valores que recibe son correctos, tanto como la variable $mesa y $fecha
Código PHP:
function busca_pedidos($mesa, $fecha) {
$this->db->where('id_mesa',$mesa);
$this->db->where('fecha_carga' > $fecha);
$query = $this->db->get('carga_temporal'); // Select the table products
return $query->result_array(); // Return the results in a array.
}
ose me tiene que traer TODOS los registros de esa mesa, y de esa fecha en adelante....
el firebug me tira este error...
Código PHP:
<body>
<div id="container">
<h1>A Database Error Occurred</h1>
<p>Error Number: 1054</p><p>Unknown column '1' in 'where clause'</p><p>SELECT *
FROM (`carga_temporal`)
WHERE `id_mesa` = '5'
AND `1` IS NULL</p><p>Filename: D:wampwwwmipaginasystemdatabaseDB_driver.php</p><p>Line Number: 330</p> </div>
</body>