|
$arPokerFeed = @file("http://www.casinoblasters.com/marketing_tools/poker_tournament_feeds/poker_tournaments_10000.txt");
if (!$arPokerFeed){
print "The poker tournament feed is not currently available. Please check back soon.";
}else{
print " \n";
print "";
print "| Name | ";
print "Buy In | ";
print "Fee | ";
print "Registered Players | ";
print "Max Players | ";
print "Prize Value | ";
print "Date/Time | ";
print " \n";
foreach($arPokerFeed as $strThisTournament){
$arThisTournament = explode("|",$strThisTournament);
print "";
print "| $arThisTournament[0] | ";
print "$arThisTournament[1] | ";
print "$arThisTournament[2] | ";
print "$arThisTournament[3] | ";
print "$arThisTournament[4] | ";
print "$arThisTournament[5] | ";
print "$arThisTournament[6] | ";
print " \n";
}
print " ";
}
?>
|