What is wrong with this statement? Is it because Body-Text is in double quotes? How can I search for this exact string?
$loc = strpos($contents, "</a><br><span class="Body-Text">", $loc);
Hi,
try
$loc = strpos($contents, "</a><br><span class=\"Body-Text\">", $loc);
or
$loc = strpos($contents, '</a><br><span class="Body-Text">', $loc);
Thomas