Hi, I have this script which 'should' delete all teams, players from a league associated with it, it deletes the league and any teams in it, but doesnt delete any of the players inside the teams;
$db->sql_query("DELETE FROM leagues WHERE id='$id'",false,__FILE__,__LINE__);
$db->sql_query("DELETE FROM teams WHERE league='$id'",false,__FILE__,__LINE__);
$result = $db->sql_query("SELECT id FROM teams WHERE league='$id'",false,__FILE__,__LINE__);
$team = $db->sql_fetchrow($result);
$team = $team['id'];
$db->sql_query("DELETE FROM players WHERE team='$team'",false,__FILE__,__LINE__);
url_redirect(adminlink('&mode=Leagues'));
Thanks in advance