ok Add player is done 
went from this
[php]
include (’…/include/config.inc.php’);
if($addnew)
{
if($first && $last)
{
$insert = “INSERT INTO players (last, first) VALUES (’$last’,’$first’)”;
$result = mysql_query($insert);
echo “Thank You, That information has been entered.
\n
If you are not re-directed to the Admin page in 3 seconds
<a href=index.php?seasonID=$seasonID>Click Here”;
echo “<META HTTP-EQUIV=Refresh CONTENT=“3; URL=index.php?seasonID=$seasonID”>”;
}
else
{
echo "you must enter a player's name";
}
}
elseif($addexisting)
{
if($playerID)
{
$insert = “INSERT INTO playersinseason (playerID, seasonID) VALUES (’$playerID’,’$seasonID’)”;
$result = mysql_query($insert);
echo “Thank You, That information has been entered.
\n
If you are not re-directed to the Admin page in 3 seconds
<a href=index.php?seasonID=$seasonID>Click Here”;
echo “<META HTTP-EQUIV=Refresh CONTENT=“3; URL=index.php?seasonID=$seasonID”>”;
}
else
{
echo “you must select a player”;
}
}
else
{
echo “error”;
}
[/php]
To This
[php]
include (’…/include/config.inc.php’);
if(isset($_POST[‘last’ ])){
$last = $_POST[‘last’];
if(isset($_POST[‘first’ ])){
$first = $_POST[‘first’];
$insert = "INSERT INTO players (last, first) VALUES ('$last','$first')";
$result = mysql_query($insert);
echo "Thank You, That information has been entered.<br>\n
If you are not re-directed to the Admin page in 3 seconds
<a href=index.php?seasonID=$seasonID>Click Here</a>";
echo "<META HTTP-EQUIV=Refresh CONTENT=\"3; URL=index.php?seasonID=$seasonID\">";
}
{
echo "you must enter a player's name";
}
}
elseif($addexisting)
{
if($playerID)
{
$insert = “INSERT INTO playersinseason (playerID, seasonID) VALUES (’$playerID’,’$seasonID’)”;
$result = mysql_query($insert);
echo “Thank You, That information has been entered.
\n
If you are not re-directed to the Admin page in 3 seconds
<a href=index.php?seasonID=$seasonID>Click Here”;
echo “<META HTTP-EQUIV=Refresh CONTENT=“3; URL=index.php?seasonID=$seasonID”>”;
}
else
{
echo “you must select a player”;
}
}
else
{
echo “error”;
}
[/php]
Hope the rest fix this easy