Varsity Wrestling Seeding

Information To start, pick a seed weight.
Results will display wrestlers who have that seed weight and the results of all of their competition.

Your league is set to: Non Divisional Seeding - All matches wrestled count toward seeding totals.

Please select a weight class to display results.

Please select a weight class to display results.

Please select a weight class to display results.

 

Wrestleague.com | © Copyright 2025 | Home | Return to Top | Admin Panel | Logout

// Function to close queries and database connection function closeDatabase($resultSets, $connection) { try { // Free result sets if (is_array($resultSets)) { foreach ($resultSets as $resultSet) { if ($resultSet) { mysqli_free_result($resultSet); } } } // Close the database connection if ($connection) { mysqli_close($connection); } echo "All queries and connections closed successfully."; } catch (Exception $e) { echo "Error closing database resources: " . $e->getMessage(); } }