PhpRiot
Recent Code Pastes

Listing 1526

Submitted by promyk, 18 August 2008
<?
/*--------------------------------------------------------------------------+
| INFO : Mini table
|---------------------------------------------
| author: pr0metheus/RyBa - (c) 2008
|---------------------------------------------
+--------------------------------------------------------------------------*/
if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; }
/*
if (file_exists(INFUSIONS."eXtreme_navigation_panel/locale/".$settings['locale'].".php")) {
include INFUSIONS."eXtreme_navigation_panel/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."eXtreme_navigation_panel/locale/Polish.php";
}*/
openside($locale['666']);
function get_5_record_from_table(){
for ($i=1; $i<=5; $i++)
{
#$aha = 1;
$string=file_get_contents("http://kskorona.webcommand.org/tabela/index.php");
$w = preg_match('/[[:space:]]*\s<tr>[[:space:]]*\s<td align="left" valign="middle" bgcolor="#FFFFFF">[[:space:]]*\s<b>'.$i.'\.<\/b>[[:space:]]*\s<\/td>[[:space:]]*\s<td align="left" valign="middle" bgcolor="(.*)">[[:space:]]*\s<b>(.*)<\/b>/', $string , $s);
$zespol = $s[2];
if($zespol == "KS Korona Rokitno Szlacheckie"){
$zespol = '<b>' . $zespol . '</b>';
}
print ''.$i.'';
print '.';
echo '<font size=1>' . $zespol . '</font>';
echo '<br>';
}
}
get_5_record_from_table();
closeside();
?>
Submit a Follow Up