Hello I use preg_match_all function to grab things on a page but when i tried to grab some specific parts like details part it sends me an array !
code structure on that page is
<div class="f slp">DETAILS I WANT TO GET</div>
previously for grab urls n titles I used a code like
//so this gets URLs in href=""
preg_match_all('/a href="([^"]+)" class=l.+?>.+?<\/a>/',$scraped,$results);
but this time I want to grab some details on that page under the structure of
<div class="f slp">DETAILS I WANT TO GET</div>