我试图将我的总数归入列中。现在我把它设置为总计目标和助攻,但它们打印在我当前行的右侧。
我试图让它一起打印在它自己的行的底行,所以它看起来像这样: http://www.nhl.com/ice/player.htm?id=8477290用于职业统计。
现在它看起来像http://cnghl.biz/cnghldb/cnghlplayerinfo.php?PlayerID=1267
$oPlayerStats = mysql_query("
SELECT SeasonStats.Sea, SeasonStats.TeamID, SeasonStats.GP, SeasonStats.Goals,
SeasonStats.Assists, SeasonStats.Points, SeasonStats.PlusMinus,
SeasonStats.Pim, SeasonStats.PP, SeasonStats.SH, SeasonStats.GW,
SeasonStats.GT, SeasonStats.S, Seasonteam.Team, SUM(SeasonStats.Goals) AS Goals_Total, SUM SUM (SeasonStats.Assists) AS Assists_Total, SUM(SeasonStats.Assists) As Games_Total
FROM SeasonStats
Left JOIN Seasonteam
On SeasonStats.TeamID=Seasonteam.TeamID
WHERE SeasonStats.PlayerID=$iPlayerID
ORDER BY SeasonStats.Sea;
") or die(mysql_error());
Print "<br><br><table border=1 cellpadding=1>";
Print "<tr>";
Print "<td><strong>Season</strong></td> ";
Print "<td><strong><center>Team</center></strong></td> ";
Print "<td><strong><center>GP</center></strong></td> ";
Print "<td><strong><center>G</center></td></strong> ";
Print "<td><strong><center>A</center></strong></td> ";
Print "<td><strong><center>P</center></strong></td> ";
Print "<td><strong><center>PIM</center></strong></td> ";
Print "<td><strong><center>+/-</center></strong></td> ";
Print "<td><strong><center>PPG</center></strong></td> ";
Print "<td><strong><center>SHG</center></strong></td> ";
Print "<td><strong><center>GWG</center></strong></td> ";
Print "<td><strong><center>GTG</center></strong></td> ";
Print "<td><strong><center>Shots</center></strong></td> ";
Print "<td><strong><center>Total Goals</center></strong></td> ";
while($row = mysql_fetch_array($oPlayerStats))
{
Print "<tr>";
Print "<td><center>".$row['Sea']."</center></td> ";
Print "<td><center>".$row['Team']."</center></td> ";
Print "<td><center>".$row['GP']."</center></td> ";
Print "<td><center>".$row['Goals']."</center></td> ";
Print "<td><center>".$row['Assists']."</center></td> ";
Print "<td><center>".$row['Points']."</center></td> ";
Print "<td><center>".$row['Pim']."</center></td> ";
Print "<td><center>".$row['PlusMinus']."</center></td> ";
Print "<td><center>".$row['PP']."</center></td> ";
Print "<td><center>".$row['SH']."</center></td> ";
Print "<td><center>".$row['GW']."</center></td> ";
Print "<td><center>".$row['GT']."</center></td> ";
Print "<td><center>".$row['S']."</center></td> ";
Print "<td><center>".$row['Goals_Total']."</center></td> ";