//Коннектим дб
$db = Db::getConnection();
//Переменная для ключей
//SQL запрос в бд
$sql = 'INSERT INTO user (incart) '
. 'VALUES (:incart)';
//достаем строку с id
$incart = json_encode($incart);
$result = $db->prepare($sql);
$result->bindParam(':incart', $incart, PDO::PARAM_STR);
return $result->execute();
Выдает Notice: Undefined variable: incart in.