$link=mysqli_connect('localhost', 'atsdb','db_nhl009','atsrdbnhl');
#----collecting all variables
$name1=explode(",",$name);
$date=$name1[0];
$time=$name1[1];
$roadteamid=$name1[2];
$roadteam=$name1[3];
$roadteam1=strtolower($roadteam);
$hometeamid=$name1[4];
$hometeam=$name1[5];
$hometeam1=strtolower($hometeam);
$league=$name1[6];
if($league=='NCAAF')
{
if($roadteam=='Texas A^M')
{
$roadteam='Texas A&M';
}
$roadteam1=strtolower($roadteam);
if($hometeam=='Texas A^M')
{
$hometeam='Texas A&M';
}
$hometeam1=strtolower($hometeam);
}
#taking pitchers name if MLB
if($league=='MLB')
{
$roadpitcher=$name1[7];
$roadpithand=$name1[8];
$homepitcher=$name1[9];
$homepithand=$name1[10];
$roadgameno=$name1[11];
$homegameno=$name1[12];
}
else
{
$roadgameno=$name1[7];
$homegameno=$name1[8];
}
$tagroadteam=$roadteam;
$taghometeam=$hometeam;
$tagdate=$date;
$tagval=$league;
if($pst=="true")
{
}
else
{
require "Templates/header.inc.php";
}
#red down arrow path
$arrow=" ";
#Green Star Image Path
$star1=" ";
#Blue Star Image Path
$star2=" ";
#Red Star Image Path
$star3=" ";
?>
#----collecting all variables for link to Number Report
$name2=preg_replace('/,/','~',$name);
//echo "name=$name2 ";
$league1=strtolower($league);
$table=$league1.'_teams';
if($league=='CFL')
{
$baseimgpath='http://www.atsdatabase.com/atsdb2/'.$league1.'/'.$league1.'_db3_images/';
$img1=$baseimgpath.$roadteam.'.gif';
$img2=$baseimgpath.$hometeam.'.gif';
}
elseif($league=='NFL')
{
$baseimgpath='http://www.atsdatabase.com/atsdb2/'.$league1.'/'.$league1.'_images/';
$img1=$baseimgpath.$roadteam.'.gif';
$img2=$baseimgpath.$hometeam.'.gif';
}
else
{
$baseimgpath='http://www.atsdatabase.com/atsdb2/'.$league1.'/'.$league1.'_images/';
$img1=$baseimgpath.$roadteam1.'.gif';
$img2=$baseimgpath.$hometeam1.'.gif';
}
if($league=='MLB')
{
$rteamqry=mysqli_query($link,"select alias_teamname from mlb_teams where team_id='$roadteamid' ");
list($rteam)=mysqli_fetch_array($rteamqry);
$hteamqry=mysqli_query($link,"select alias_teamname from mlb_teams where team_id='$hometeamid' ");
list($hteam)=mysqli_fetch_array($hteamqry);
}
else
{
$rteam=$roadteam;
$hteam=$hometeam;
}
$select=$date.','.$time.','.$league.','.$roadgameno.','.$homegameno;
$selval=explode(",",$select);
$gdate=$selval[0];
$gtime=$selval[1];
$league=$selval[2];
$gameno1=$selval[3];
$gameno2=$selval[4];
$val=$league;
include "game_times.php";
/*if($league=='NCAAF')
{
$enddate='2010-01-07';
}*/
//$startdate=$enddate='2008-10-09';
$gleague=$val;
switch($gleague)
{
case'MLB':
$forval='(RF)';
$againstval='(RA)';
break;
case'NHL':
$forval='(GF)';
$againstval='(GA)';
break;
case'NBA':
$forval='(PF)';
$againstval='(PA)';
break;
case'NFL':
$forval='(PF)';
$againstval='(PA)';
break;
case'NCAAF':
$forval='(PF)';
$againstval='(PA)';
break;
case'CFB':
$forval='(PF)';
$againstval='(PA)';
break;
case'CFL':
$forval='(PF)';
$againstval='(PA)';
break;
}
$leagueqry=mysqli_query($link,"select league_no from ats_league1 where league_name='$gleague' ");
list($lno)=mysqli_fetch_array($leagueqry);
/// pitcher_last3_game pitcher_last5_game pitcher_last7_game pitcher_last10_game pitcher_last15_game
$selqry=mysqli_query($link,"select league_name, game_status, game_date, game_time,game_no1,game_no2,game_total,team1, team2 , pitcher1 , pitcher1_hand , pitcher2 , pitcher2_hand , team1_spread , team2_spread , team1_ML , team2_ML , last_game , current_game , next_game , last3_game , last5_game, last7_game, last10_game, last15_game ,pitcher_last3_game , pitcher_last5_game , pitcher_last7_game , pitcher_last10_game , pitcher_last15_game , goals_last3 , goals_last5 , goals_last7 ,goals_last10 , goals_last15, road_situations, home_situations from ats_quick_stats where league_name='$gleague' and game_date='$gdate' and game_no1='$gameno1' and game_no2='$gameno2' ");
list ($league,$game_status,$game_date ,$game_time ,$game_no1 ,$game_no2 ,$game_total ,$team1 ,$team2 ,$pitcher1 ,$pitcher1_hand ,$pitcher2 ,$pitcher2_hand ,$team1_spread ,$team2_spread ,$team1_ML ,$team2_ML ,$last_game ,$current_game ,$next_game ,$last3_game ,$last5_game , $last7_game ,$last10_game ,$last15_game ,$pitcher_last3_game , $pitcher_last5_game , $pitcher_last7_game , $pitcher_last10_game , $pitcher_last15_game ,$goals_last3 ,$goals_last5 , $goals_last7 ,$goals_last10 ,$goals_last15 ,$road_situations ,$home_situations )=mysqli_fetch_array($selqry);
//echo "road_situations=$road_situations ";
//echo "home_situations=$home_situations ";
$gametiming=explode(":",$game_time);
$gamehrs=$gametiming[0];
if($gamehrs>12)
{
$gamehr=$gamehrs-12;
$ampm=' PM ';
}
elseif($gamehrs==12)
{
$gamehr=$gamehrs;
$ampm=' PM ';
}
else
{
$gamehr=$gamehrs;
$ampm=' AM ';
}
$gametimedisp=$gamehr.':'.$gametiming[1].$ampm;
$lastgame=explode("~",$last_game);
$road_lastgame=$lastgame[0];
$home_lastgame=$lastgame[1];
$currentgame=explode("~",$current_game);
$road_currentgame=$currentgame[0];
$home_currentgame=$currentgame[1];
$nextgame=explode("~",$next_game);
$road_nextgame=$nextgame[0];
$home_nextgame=$nextgame[1];
$last3game=explode("~",$last3_game);
$road_last3game=$last3game[0];
$home_last3game=$last3game[1];
$last5game=explode("~",$last5_game);
$road_last5game=$last5game[0];
$home_last5game=$last5game[1];
$last7game=explode("~",$last7_game);
$road_last7game=$last7game[0];
$home_last7game=$last7game[1];
$last10game=explode("~",$last10_game);
$road_last10game=$last10game[0];
$home_last10game=$last10game[1];
$last15game=explode("~",$last15_game);
$road_last15game=$last15game[0];
$home_last15game=$last15game[1];
#####################
$pitcherlast3game=explode("^",$pitcher_last3_game);
$road_pitcherlast3game=$pitcherlast3game[0];
$home_pitcherlast3game=$pitcherlast3game[1];
$Rlast3pitgame=explode("~",$road_pitcherlast3game);
$roadWL_last3pitgame=$Rlast3pitgame[0];
$roadRUNS_last3pitgame=$Rlast3pitgame[1];
$Hlast3pitgame=explode("~",$home_pitcherlast3game);
$homeWL_last3pitgame=$Hlast3pitgame[0];
$homeRUNS_last3pitgame=$Hlast3pitgame[1];
##########
$pitcherlast5game=explode("^",$pitcher_last5_game);
$road_pitcherlast5game=$pitcherlast5game[0];
$home_pitcherlast5game=$pitcherlast5game[1];
$Rlast5pitgame=explode("~",$road_pitcherlast5game);
$roadWL_last5pitgame=$Rlast5pitgame[0];
$roadRUNS_last5pitgame=$Rlast5pitgame[1];
$Hlast5pitgame=explode("~",$home_pitcherlast5game);
$homeWL_last5pitgame=$Hlast5pitgame[0];
$homeRUNS_last5pitgame=$Hlast5pitgame[1];
##########
$pitcherlast7game=explode("^",$pitcher_last7_game);
$road_pitcherlast7game=$pitcherlast7game[0];
$home_pitcherlast7game=$pitcherlast7game[1];
$Rlast7pitgame=explode("~",$road_pitcherlast7game);
$roadWL_last7pitgame=$Rlast7pitgame[0];
$roadRUNS_last7pitgame=$Rlast7pitgame[1];
$Hlast7pitgame=explode("~",$home_pitcherlast7game);
$homeWL_last7pitgame=$Hlast7pitgame[0];
$homeRUNS_last7pitgame=$Hlast7pitgame[1];
##########
$pitcherlast10game=explode("^",$pitcher_last10_game);
$road_pitcherlast10game=$pitcherlast10game[0];
$home_pitcherlast10game=$pitcherlast10game[1];
$Rlast10pitgame=explode("~",$road_pitcherlast10game);
$roadWL_last10pitgame=$Rlast10pitgame[0];
$roadRUNS_last10pitgame=$Rlast10pitgame[1];
$Hlast10pitgame=explode("~",$home_pitcherlast10game);
$homeWL_last10pitgame=$Hlast10pitgame[0];
$homeRUNS_last10pitgame=$Hlast10pitgame[1];
##########
$pitcherlast15game=explode("^",$pitcher_last15_game);
$road_pitcherlast15game=$pitcherlast15game[0];
$home_pitcherlast15game=$pitcherlast15game[1];
$Rlast15pitgame=explode("~",$road_pitcherlast15game);
$roadWL_last15pitgame=$Rlast15pitgame[0];
$roadRUNS_last15pitgame=$Rlast15pitgame[1];
$Hlast15pitgame=explode("~",$home_pitcherlast15game);
$homeWL_last15pitgame=$Hlast15pitgame[0];
$homeRUNS_last15pitgame=$Hlast15pitgame[1];
$goalslast3=explode("~",$goals_last3);
$road_goalslast3=$goalslast3[0];
$home_goalslast3=$goalslast3[1];
$goalslast5=explode("~",$goals_last5);
$road_goalslast5=$goalslast5[0];
$home_goalslast5=$goalslast5[1];
$goalslast7=explode("~",$goals_last7);
$road_goalslast7=$goalslast7[0];
$home_goalslast7=$goalslast7[1];
$goalslast10=explode("~",$goals_last10);
$road_goalslast10=$goalslast10[0];
$home_goalslast10=$goalslast10[1];
$goalslast15=explode("~",$goals_last15);
$road_goalslast15=$goalslast15[0];
$home_goalslast15=$goalslast15[1];
/***********************************************************************************/
$roadfav_dogqry=mysqli_query($link,"select homefav_off_avg, homefav_def_avg,homefav_WLT,roadfav_off_avg, roadfav_def_avg , roadfav_WLT , homedog_off_avg, homedog_def_avg, homedog_WLT ,roaddog_off_avg , roaddog_def_avg , roaddog_WLT from ats_fastfacts where team_id='$roadteamid' and league_name='$gleague' ");
list($homefav_off_avg, $homefav_def_avg,$homefav_WLT,$roadfav_off_avg, $roadfav_def_avg , $roadfav_WLT , $homedog_off_avg, $homedog_def_avg, $homedog_WLT ,$roaddog_off_avg , $roaddog_def_avg , $roaddog_WLT) =mysqli_fetch_array($roadfav_dogqry);
#--winlost
$homefav_WinLoss=explode("-",$homefav_WLT);
$hfav_WL=$homefav_WinLoss[0].' Win -'.$homefav_WinLoss[1].' Lost';
$hfav_avg=$forval.$homefav_off_avg.' - '.$againstval.$homefav_def_avg;
$homedog_WinLoss=explode("-",$homedog_WLT);
$hdog_WL=$homedog_WinLoss[0].' Win -'.$homedog_WinLoss[1].' Lost';
$hdog_avg=$forval.$homedog_off_avg.' - '.$againstval.$homedog_def_avg;
$roadfav_WinLoss=explode("-",$roadfav_WLT);
$rfav_WL=$roadfav_WinLoss[0].' Win -'.$roadfav_WinLoss[1].' Lost';
$rfav_avg=$forval.$roadfav_off_avg.' - '.$againstval.$roadfav_def_avg;
$roaddog_WinLoss=explode("-",$roaddog_WLT);
$rdog_WL=$roaddog_WinLoss[0].' Win -'.$roaddog_WinLoss[1].' Lost';
$rdog_avg=$forval.$roaddog_off_avg.' - '.$againstval.$roaddog_def_avg;
$homefav_dogqry=mysqli_query($link,"select homefav_off_avg, homefav_def_avg,homefav_WLT,roadfav_off_avg, roadfav_def_avg , roadfav_WLT , homedog_off_avg, homedog_def_avg, homedog_WLT ,roaddog_off_avg , roaddog_def_avg , roaddog_WLT from ats_fastfacts where team_id='$hometeamid' and league_name='$gleague'");
list($homefav_off_avg1, $homefav_def_avg1,$homefav_WLT1,$roadfav_off_avg1, $roadfav_def_avg1, $roadfav_WLT1 , $homedog_off_avg1, $homedog_def_avg1, $homedog_WLT1 ,$roaddog_off_avg1 , $roaddog_def_avg1 , $roaddog_WLT1) =mysqli_fetch_array($homefav_dogqry);
#--winlost
$homefav_WinLoss1=explode("-",$homefav_WLT1);
$hfav_WL1=$homefav_WinLoss1[0].' Win -'.$homefav_WinLoss1[1].' Lost';
$hfav_avg1=$forval.$homefav_off_avg1.' - '.$againstval.$homefav_def_avg1;
$homedog_WinLoss1=explode("-",$homedog_WLT1);
$hdog_WL1=$homedog_WinLoss1[0].' Win -'.$homedog_WinLoss1[1].' Lost';
$hdog_avg1=$forval.$homedog_off_avg1.' - '.$againstval.$homedog_def_avg1;
$roadfav_WinLoss1=explode("-",$roadfav_WLT1);
$rfav_WL1=$roadfav_WinLoss1[0].' Win -'.$roadfav_WinLoss1[1].' Lost';
$rfav_avg1=$forval.$roadfav_off_avg1.' - '.$againstval.$roadfav_def_avg1;
$roaddog_WinLoss1=explode("-",$roaddog_WLT1);
$rdog_WL1=$roaddog_WinLoss1[0].' Win -'.$roaddog_WinLoss1[1].' Lost';
$rdog_avg1=$forval.$roaddog_off_avg1.' - '.$againstval.$roaddog_def_avg1;
/***********************************************************************************/
switch($gleague)
{
case 'NBA':
$showmsg='Points';
break;
case 'NHL':
$showmsg='Goals';
break;
case 'MLB':
$showmsg='Runs';
break;
case 'NFL':
$showmsg='Points';
break;
case 'NCAAF':
$showmsg='Points';
break;
}
if($rteam=='Texas A&M')
{
$rteam='Texas A^M';
}
if($hteam=='Texas A&M')
{
$hteam='Texas A^M';
}
$name3=$gleague.','.$rteam.','.$hteam.','.$name2;
$league=$gleague;
?>
ATS Quick Stats :-
The ATS Database Quick Stats area is basically the Coles Note version of the entire site on one page. In fact, you will find part of the head to head matchups, ATS Matchups, Super Stats and team trends on the ATS Quick stats page. Also, it will give you a statistical scoring average on teams past 3, 5, 10 and 15 games. In addition, it provides sports bettors the current situation of each team such as they are coming off a 5 game winning or losing streak, scored 30 or more points in their last game, Allowed 21 or less points against on defense in their last game etc...
You Are Here ATS QUICK STATS
Jump to Game
---Jump To Game------
//name=2007-04-19,12:05:00,17,PHILADELPHIA,18,WASHINGTON,MLB,J%20Moyer,L,J%20Patterson,R,901,902
//echo "select * from new_asp_schedule where game_date between '$startdate' and '$enddate' and league_no='$lno' and (team1 not like '%Teams%' or team2 not like '%Teams%')and (game_no1<'1000' and game_no2<'1000') +++ $league *** $gleague";
$option_qry=mysqli_query($link,"select * from new_asp_schedule where game_date between '$startdate' and '$enddate' and league_no='$lno' and (team1 not like '%Teams%' or team2 not like '%Teams%') ");
while($opt_row=mysqli_fetch_array($option_qry))
{
$optgame_date=$opt_row['game_date'];
$optgame_time=$opt_row['game_time'];
$optgame_no1=$opt_row['game_no1'];
$optgame_no2=$opt_row['game_no2'];
$optteam11=$opt_row['team1'];
$optteam22=$opt_row['team2'];
$optgame_time=$opt_row['game_time'];
$optpitcher1 =$opt_row['pitcher1'];
$optpitcher1_hand =$opt_row['pitcher1_hand'];
$optpitcher2 =$opt_row['pitcher2'];
$optpitcher2_hand =$opt_row['pitcher2_hand'];
$table=strtolower($gleague).'_teams';
/*$sel_xml1=mysqli_query($link,"select team_name,team_id from $table where new_teamname = '$optteam11' ");
list($optteam1_name,$optteam1_id)=mysqli_fetch_array($sel_xml1);
$sel_xml2=mysqli_query($link,"select team_name,team_id from $table where new_teamname = '$optteam22' ");
list($optteam2_name,$optteam2_id)=mysqli_fetch_array($sel_xml2);
*/
if($league=='NCAAF')
{
$sel_xml1=mysqli_query($link,"select team_name,team_id from $table where (team_name='$optteam11' or score_teamname='$optteam11') ");
list($optteam1_name,$optteam1_id)=mysqli_fetch_array($sel_xml1);
if($optteam1_name=='Texas A&M')
{
$optteam11_name='Texas A^M';$optteam1_name='Texas A&M';
}
else
{
$optteam11_name=$optteam1_name;
}
$sel_xml2=mysqli_query($link,"select team_name,team_id from $table where (team_name ='$optteam22' or score_teamname='$optteam22') ");
list($optteam2_name,$optteam2_id)=mysqli_fetch_array($sel_xml2);
if($optteam2_name=='Texas A&M')
{
$optteam22_name='Texas A^M';$optteam2_name='Texas A&M';
}
else
{
$optteam22_name=$optteam2_name;
}
}
elseif($league=='MLB')
{
//echo "select team_name,team_id from mlb_teams where new_teamname='$optteam11' ";
$sel_xml11=mysqli_query($link,"select team_name,team_id from mlb_teams where new_teamname='$optteam11' ");
list($optteam1_name,$optteam1_id)=mysqli_fetch_array($sel_xml11);
$sel_xml22=mysqli_query($link,"select team_name,team_id from mlb_teams where new_teamname='$optteam22' ");
list($optteam2_name,$optteam2_id)=mysqli_fetch_array($sel_xml22);
}
else
{
$sel_xml1=mysqli_query($link,"select team_name,team_id from $table where new_teamname like'%$optteam11%' ");
list($optteam1_name,$optteam1_id)=mysqli_fetch_array($sel_xml1);
$optteam11_name=$optteam1_name;
$sel_xml2=mysqli_query($link,"select team_name,team_id from $table where new_teamname like '%$optteam22%' ");
list($optteam2_name,$optteam2_id)=mysqli_fetch_array($sel_xml2);
$optteam22_name=$optteam2_name;
}
if($league=='MLB')
{
$name4=$optgame_date.','.$optgame_time.','.$optteam1_id.','.$optteam1_name.','.$optteam2_id.','.$optteam2_name.','.$gleague.','.$optpitcher1.','.$optpitcher1_hand.','.$optpitcher2.','.$optpitcher2_hand.','.$optgame_no1.','.$optgame_no2;
}
else
{
$name4=$optgame_date.','.$optgame_time.','.$optteam1_id.','.$optteam11_name.','.$optteam2_id.','.$optteam22_name.','.$gleague.','.$optgame_no1.','.$optgame_no2;
}
if($optteam1_name!='' && $optteam2_name!='')
{
?>
-Vs-
}
}?>
Matches for
Vs.
Line :
if($gleague=='MLB')
{
echo $team1_ML;
}
else
{
echo $team1_spread;
}
?>
O/U :
Last game:
Current game: vs. at
Next Game:
Home Favorite:
Home Underdog:
Road Favorite:
Road Underdog:
if($league=='MLB')
{
?>
's L3 game:
's L5 game:
's L7 game:
's L10 game:
's L15 game:
}
?>
Last 3 game:
Last 5 game:
Last 7 game:
Last 10 game:
Last 15 game:
Situations
$roadsit=explode("~",$road_situations);
for($g=0;$g
}
?>
//}#end else
?>
Vs.
Line :
if($gleague=='MLB')
{
echo $team2_ML;
}
else
{
echo $team2_spread;
}
?>
O/U :
Last game:
Current game: vs. at
Next Game:
Home Favorite:
Home Underdog:
Road Favorite:
Road Underdog:
if($league=='MLB')
{
?>
's L3 game:
's L5 game:
's L7 game:
's L10 game:
's L15 game:
}
?>
Last 3 game:
Last 5 game:
Last 7 game:
Last 10 game:
Last 15 game:
Situations
$homesit=explode("~",$home_situations);
for($h=0;$h
}
?>
//}#end else
?>
mysqli_close($link);
if($pst=="true")
{
}
elseif($pstpicks=="true")
{
}
else
{
require "Templates/footer.inc.php";
}
?>