hello members i try to make a script but its not working please fix the errors and try to make it for me i shall very thankful to you
PHP Code:
<?php
$link = 'http://xvfon.com/?cate=Big_Tits_3gp_Clips&zone=clip&by=id&sort=desc';
$file=file_get_contents($link);
function pick($start,$stop,$from){
$from=explode($start,$from);
$from=explode($stop,$from[1]);
$from=$from[0];
return $from;
}
$chunk = explode('<tr >', $file);
//print_r($chunk);
$count = count($chunk);
for ($i=1; $i < $count; $i++)
{
$match_name = preg_match('/clip_(.*).jpg/i', $chunk[$i], $w);
$id=$w[1];
}
echo '<br>'.$id.'';
?>
Comment