Im trying to get the text inbetween a tag. Heres what I have so far:
$new4 = '><strong> Rating:</strong><span> <span class="rl s5" title="A 5 Star(s)">A';
preg_match('/title="(.*?)">">/', $new4, $output);
echo '<pre>';
print_r($output);
echo '</pre>';
All im getting is a blank array, not sure where I am going wrong.