from the phrase:
<div class="latestf"> <a href="http://www.x.ro/anamaria/"
rel="nofollow"
I want to extract anamaria. How to do that with preg_match_all ?
I tried:
preg_match_all("'<div class=\"latestf\">
<a href=\"http://www.x.ro/(.*?)\" rel=\"nofollow\"'si", $source, $match);
but it didn`t work...
Thank you in advance !