What are the best practices for managing auto-increment values in MySQL tables when deleting entries?

When deleting entries from a MySQL table with auto-increment values, it is important to manage the auto-increment values properly to avoid gaps in the sequence. One way to do this is by resetting the auto-increment value after deleting entries. This can be achieved by altering the table to set the auto-increment value to the highest existing value in the table.

<?php
// Connect to MySQL database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database";
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Delete entries from table
$sql = "DELETE FROM table_name WHERE condition";
if ($conn->query($sql) === TRUE) {
    echo "Entries deleted successfully";
} else {
    echo "Error deleting entries: " . $conn->error;
}

// Reset auto-increment value
$sql = "ALTER TABLE table_name AUTO_INCREMENT = 1";
if ($conn->query($sql) === TRUE) {
    echo "Auto-increment value reset successfully";
} else {
    echo "Error resetting auto-increment value: " . $conn->error;
}

// Close connection
$conn->close();
?>