I'm trying to extract some information out of a website.
My problem is that I need to extract text that is like this:
<p class="review"> "Desired text3" </p>
How to get the text that is inside the quotation marks " .... "?
Actually I've tried this but it wont work at all!
preg_match_all('|<p class=\"adress\">(.*)<\/p>|',$data,$text);
Any ideas?