#####################################
#				    #
# SCRIPT MTV.PT by Diogo Serrano    #
# http://zebaril.net		    #	
#####################################

<?php
$handle = fopen("http://www.mtv.pt/", "r");
$contents = '';
if($handle)
{
 while (!feof($handle)) {
   $contents .= fread($handle, 8192);
 }
$corta = ereg("<!-- News Articles -->(.*)<!-- loginfield -->", $contents, $substituicao);

$substituicao[1] = ereg_replace("/mtv.pt/", "http://www.mtv.pt/mtv.pt/", $substituicao[1]);  
echo "$substituicao[1]";
fclose($handle);
}
?> 


// outra parte dos ficheiro convem usar em files separados

<?php
$handle = fopen("http://www.mtv.pt/", "r");
$contents = '';
if($handle)
{
 while (!feof($handle)) {
   $contents .= fread($handle, 8192);
 }
$corta = ereg("<span class=\"hotarticleHeadlineTXT\">(.*)<td width=\"22\" id=\"bg_sep\">", $contents, $substituicao);
echo strip_tags($substituicao[1], '<p>');
fclose($handle);
}
?>