I'm trying to turn this string:
> President Obama pointed blabla<br /> <br /> The only way I get this
> stuff <br /> <br /> I'm consulting with the Pentagon, with <br /> <br
> />
into this array: (new array element for each "<br /> <br />")
array (
[0] => President Obama pointed blabla
[1] => The only way I get this stuff
[2] => I'm consulting with the Pentagon, with
);
I tried to use explode("<br /><br /> ", $string) but it doesn't work. Any ideas?
explode("<br /> <br /> ", $string)Note the space between the 2<br />s.