How can the code provided be improved to ensure that the SQL queries are correctly linked to the group names in the database?

The issue with the current code is that the SQL queries are not properly linked to the group names in the database due to the incorrect use of concatenation in the queries. To ensure the queries are correctly linked to the group names, we should use prepared statements with placeholders for the group names and bind the actual values to these placeholders.

// Connect to the database
$pdo = new PDO("mysql:host=localhost;dbname=mydatabase", "username", "password");

// Define the SQL query with a placeholder for the group name
$sql = "SELECT * FROM groups WHERE group_name = :group_name";

// Prepare the SQL query
$stmt = $pdo->prepare($sql);

// Bind the actual group name value to the placeholder
$stmt->bindParam(':group_name', $groupName);

// Execute the query with the provided group name
$groupName = "Admin";
$stmt->execute();

// Fetch the results
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);

// Loop through the results
foreach ($results as $row) {
    echo $row['group_name'] . "\n";
}