Hey, I wanted to know if it’s possible to turn a table field into array. How it currently works is like this.
“UPDATE users
SET total_item
= total_item + 1 WHERE user
= ?”
Meaning the field goes up by numbers so the field could be like 5.
Now the tricky part is that I want to break that into a array e.g (1, 2, 3, 4, 5) how could I do this via PHP?