I am group_concat a bunch of reviews from my db which turns it into something like this:
This is review 1, This is review 2
then I explode it into an array like:
$review = $row->review;
$row->review = explode(',', $review);
This works great until someone in there review adds a , then it obsoulvy no longer works. So is there a way to group_concat and put something besides a comma between them? Is there a better way of fixing this? Any ideas would be greatly appreciated.