Kod
<?php
$data=file_get_contents('http://www.pomorski-zpn.pl/strona.php?i=liga&id=133');
preg_match_all('/<table width="650" border="0"[^>]*>(.*?)<\/table>/', $data, $matches);
$tabela = $matches[1];
echo $tabela;
?>
$data=file_get_contents('http://www.pomorski-zpn.pl/strona.php?i=liga&id=133');
preg_match_all('/<table width="650" border="0"[^>]*>(.*?)<\/table>/', $data, $matches);
$tabela = $matches[1];
echo $tabela;
?>