|
if ($lpid){
$handle = fopen("http://links.links4trade.com/227/227440/$lpid.html","r");
while (!feof($handle)) {
$line = fgets($handle,20000);
print $line."\n";
}
fclose($handle);
}
else{
$handle = fopen("http://links.links4trade.com/227/227440/links.html","r");
while (!feof($handle)) {
$line = fgets($handle,20000);
print $line."\n";
}
fclose($handle);
}
?>
|