I have a question about how to manipulate php string.
For example, I have a text string:
$text="
---<updated:12/20/06>---
this is 2nd entry
---<updated:12/19/06>---
this is 1st entry
";
Now if I want to remove "---<updated:XX/XX/XX>---" and only display:
this is 2nd entry
this is 1st entry
how can I do that? Is there a php function can do this?
Thanks
:confused: