<?php
require_once ( '../includes/start.php' );
require_once ( '../includes/functions.php' );
require_once ( '../includes/header.php' );
include_once ( '../themes/header.php' );
$rez = file_get_contents( 'http://www.soccerway.mobi/' );
preg_match_all( '|<tr class="(.*?)expanded(.*?)">(.*?)</tr>|s', $rez, $result );
$rez = preg_replace('|<th(.*?)>(.*?)</th>|s', '', $result[3]);
$rez = preg_replace('|<td class="minute ">(.*?)</td>|s', '', $rez);
$rez = preg_replace('|<td class="events-button button">(.*?)</td>|s', '', $rez);
$rez = preg_replace('|<td class="info-button button">(.*?)</td>|s', '', $rez);
$rez = preg_replace('|<a href="(.*?)">(.*?)</a>|s', '$2', $rez);
echo '<table>';
foreach ( $rez as $val )
{
echo '<tr>' . $val . '</tr>';
}
echo '</table>';
include_once ( '../themes/footer.php' );
если нужны только результаты или время начала.
вставишь в файл и пользуйся