OK, yes i know i could just create a new table for every user's items, but that seems like a waste when i can do it with one table field, so here it is...
oh yea, im using MySQL...
i need a way to remove or replace part of a string, like when the user removes the item. Now, i know most people would think substr_replace() or str_replace(),but i have a problem when using these...
substr_replace: I can't determine the startig index, or length arguments, being as they'll change...
str_replace: The user may have more than one of the same item, and this would replace all of them...
If anyone had any advice other than, use another table i'd greatlyapreciate it