Hi ,
i've a page where we have lots of tag, I want to grab all contents between a particular tag, in our case the tag is {english}
Example
{english} This is a short description<b>This is a bold text</b>{/english}
This is a paragraph..<span id="title">This is title</span>
{english}This is second paragraph{/english}
lsdflj l lasdf testing sdfsdf s <strong>asdfsad</strong>
<table><tr><td>tbale</td></tr></table>
{english}Testing{/english}
So, i want all contents from {english} tag in $content variable which as an array and array is like this
Array
(
[0] => This is a short description This is a bold text
[1] => This is a paragraph..This is title
[2] => This is second paragraph
)