I know this can update a table column to a new value from the previous value UPDATE table SET column=column+2
but this only happen to an integer value, I want to update a text value like this
// if the table column value is = "james,john,peter"
$new = ",andrew";
mysqli_query($con, "UPDATE table SET column=column+'".$new."');
so the new table column value will now be james,john,peter,andrew
. I have searched even stackoverflow but all answers I got is for integer value. Please anyone with an idea?