I run a fantasy basketball league. My php website/sql database is designed to let the person running the team do everything through the website - they can waive a player, an
As an aside, you should change every variable from a get or post such as:
$Team_Offering = $_POST['Team_Name'];
to
$Team_Offering = mysql_real_escape_string($_POST['Team_Name']);
before using it in a mysql query, otherwise you are vunerable to SQL injection attacks.