If I had a string that looked something like:
<tag>
Blah blah blah
</tag><tag>
foo bar
</tag><tag>
moo cow
</tag>
What would be the best way to split it so I could get an array that would look like
$array[0] = "blah blah blah";
$array[1] = "foo bar";
$array[1] = "moo cow";
I can't think of a simple way to do this with PHP. Any suggestions?
Thanks