<?php

$data=file_get_contents('http://www.javierzanetti.altervista.org/news/archive.php');

$rows = preg_match_all("'<tr[^>]*?>.*?</tr>'si", $data, $contents);

if($rows>6) $rows=6;

echo '<table>';
for($i=0; $i<$rows; $i++) echo $contents[0][$i];
echo '</table>';

?>



è giusto?