This small piece of code seemed to solve the problem. It's not a good idea to strip all "´s from a file, so I let the needle in str_replace be a bit more accurate:
$filename = 'http://www.londonorient.com/lettings2.php';
$fpArr = file($filename);
$fpArr = str_replace('/"','/',$fpArr);
for($i=0;$i<count($fpArr);$i++)
{
echo nl2br($fpArr[$i]."\n");
}
so ... I replace /" with / whick should solve your problem. The pictures though, do not seem to exist ...