Thanks Weedpacket!
$start = strpos($data, ',');
$end = strpos($data, ']');
Everytime I try to work with this, it only keeps whats between those and kills the rest of the string. I switched to (start) [ and , (end) and I certainly have just that part of the string - but the rest of the string is gone.
How would I tell it to remove just what's between the first " , " and the " ] " and keep the rest of the string?
I guess what I'm trying to say is, I have no idea how to tell it to stop 🙁