Hi xyph,
Thanks for your solution.
I have finally get an output for the title.
However, when I try for second source <strong id="J_StrPrice">$150.00</strong>, I got no result returned.
preg_match('~<strong id="J_StrPrice">(.*?)</strong>~i',$page_contents, $matches);
Anything wrong with my coding?
And how I can use multiple preg_match in one page to grab several data? If is something like below?
$page_contents = file_get_contents("####url");
preg_match('~<div class="tb-detail-hd">\s<h3>\s(.*?)</h3>~i',$page_contents, $matches);
print_r($matches[0]);
preg_match('~<strong id="J_StrPrice">(.*?)</strong>~i',$page_contents, $matches1);
print_r($matches1[0]);