<?php 

$data = file_get_contents('http://www.trabzonspor.org.tr/default.asp'); 

$standings = preg_match('~<td width="100%" background="images\/theme\/ts_88.gif" height="153" valign="top">(.+?)<\/marquee>~sm', $data, $match) ? str_replace('color:white', '', $match[1]) . '</marquee>' : 'Puan Durumu Alınamadı'; 

echo $standings; 

?>