hi
i want to explode a text with a string separator.
my string separator is: <br><br><br>
but always my string separator is not this.
it my exist with some space or new line between it:
see this text:
"hi this is a book <br><br><br> u have a book <br> <br><br> my book in my hand<br><br>
<br> my book is great"
as you saw string separator is in diffrent shapes and
$text2=explode("<br><br><br>",$text);
does not work for any shape of this string separator.
any idea?