I have PHP code like this:
$query = 'UPDATE `user_vote` SET `container` = CONCAT(`container`, ' ;
$query .= ",$glas";
$query .= ') WHERE `user_id` = ' . $id_u;
$this->db->query($query);
When I run this code, I got following error:
Error Number: 1054
Unknown column ',iljadu' in 'field list'
UPDATE
user_vote
SETcontainer
= CONCAT(container
,,iljadu
) WHEREuser_id
= 4
What is wrong with the query?