What are the best practices for preventing SQL injection when incorporating user input into PHP-generated SQL queries?

To prevent SQL injection when incorporating user input into PHP-generated SQL queries, it is essential to use prepared statements with parameterized queries. This approach separates SQL code from user input, preventing malicious SQL code from being executed. By binding parameters to placeholders in the SQL query, the database system can distinguish between code and data, ensuring secure execution.

// Establish a database connection
$pdo = new PDO('mysql:host=localhost;dbname=mydatabase', 'username', 'password');

// Prepare a SQL statement with a parameterized query
$stmt = $pdo->prepare("SELECT * FROM users WHERE username = :username");

// Bind the user input to the parameter
$stmt->bindParam(':username', $_POST['username']);

// Execute the query
$stmt->execute();

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