I want to add a combined value to the DB.... is this the correct way of calculating it??
$team_pts = $row6["team_pts"] + $row["points_win_value"];
I believe the proper way to do it is to use the intval() function.
intval = Returns the integer value of a variable http://us2.php.net/manual/en/function.intval.php
$team_pts = intval($row6["team_pts"])+intval($row["points_win_value"]);
~Brett