Tell me why the regular #<li style="list-style-position:(.*?)>(.*?)<br/># works here , but not in the code?
$x=file_get_contents('http://forum3.ru/cgi/shop/ishop.pl?cmd=show_tovar&code=90929&xhr=1'); ini_set('pcre.backtrack_limit',10000000); $x=htmlspecialchars($x); preg_match_all('#<li style="list-style-position:(.*?)>(.*?)<br/>#',$x,$matches); echo $matches[2][1]; code proper
$x=htmlspecialchars($x);it didn't get better ( - Only_fallen