Can PDO bindParam statements be combined into a single line for multiple placeholders in a SQL query?

When using PDO bindParam statements for multiple placeholders in a SQL query, you cannot combine them into a single line. Each placeholder needs to be bound separately using the bindParam method. However, you can still make the code more concise by chaining the bindParam calls.

// Example of binding multiple placeholders in a SQL query using PDO bindParam
$stmt = $pdo->prepare("SELECT * FROM users WHERE username = :username AND email = :email");
$stmt->bindParam(':username', $username);
$stmt->bindParam(':email', $email);
$stmt->execute();