Код: Выделить всё
Severity: Notice
Message: Array to string conversion
Filename: database/DB_active_rec.php
Line Number: 428
Номер ошибки: 1054 Неизвестный столбец «Массив» в разделе «where» SELECT *
FROM (`user`) WHERE `id` = Имя файла массива:
C:\xampp\htdocs\shopping\system\database\DB_driver.php Номер строки:
331
моя модель
Код: Выделить всё
function update_customer($id)
{
$this->db->where('id', $id);
$query = $this->db->get('user');
return $query;
}
Код: Выделить всё
function save_order()
{
$customer = array(
'name' => $this->input->post('full_name'),
'email' => $this->input->post('email'),
'address' => $this->input->post('address'),
'phone' => $this->input->post('telp')
);
$this->cart_model->update_customer($customer);
}
Подробнее здесь: https://stackoverflow.com/questions/424 ... iters-quer
Мобильная версия