Upcoming Tournaments at OnlineVegas.com
| Start | End | Game | Entry | Stake | Rebuy | Prize Pool | Event |
include("http://www.onlinevegas.com/global/tournament-feeds/php.php");
foreach($arTournametFeedOV as $arThisTournament){
if (stristr($arThisTournament[2],"slots") or stristr($arThisTournament[7],"slots")){
print "";
print "| ".$arThisTournament[0]." | ";
print "".$arThisTournament[1]." | ";
print "".$arThisTournament[2]." | ";
print "".$arThisTournament[3]." | ";
print "".$arThisTournament[4]." | ";
print "".$arThisTournament[5]." | ";
print "".$arThisTournament[6]." | ";
print "".$arThisTournament[7]." | ";
print " ";
$i++;
}
}
if ($i == 0) {
// no tournaments were found with requested keyword, so re-run the loop and print everything.
print "| We couldn't find any Slots specific tournaments, but you might enjoy these... | ";
foreach($arTournametFeedOV as $arThisTournament){
print "";
print "| ".$arThisTournament[0]." | ";
print "".$arThisTournament[1]." | ";
print "".$arThisTournament[2]." | ";
print "".$arThisTournament[3]." | ";
print "".$arThisTournament[4]." | ";
print "".$arThisTournament[5]." | ";
print "".$arThisTournament[6]." | ";
print "".$arThisTournament[7]." | ";
print " ";
}
}
?>
|