My variables look like this:
AAAAAAA, BB CCCCCCCC
AAAA,BBBBBB CCCCCC
I would like to remove everything before the ",
",
so the results should look like:
BB CCCCCCCC
BBBBBB CCCCCC
I have worked out this to remove everything AFTER the ",
":
list($xxx) = explode(',', $yyyyy);
unfortunately I dont know how to get it to work to remove everything BEFORE the ",
".