I'm looking for the occurence of whatever is in between:
<h2 class=abc><a href=" .... "
Here's what I've tried to piece together, but it's not working:
Any help?PHP Code:$pattern = '/\[<h2 class=abc><a href=\"\] (.*) \[\"]/i';
preg_match($pattern, $data, $matches);
print_r($matches);


Reply With Quote
Bookmarks