What are the potential pitfalls of using reserved keywords in MySQL queries in PHP?

Using reserved keywords in MySQL queries in PHP can lead to syntax errors or unexpected behavior. To avoid this issue, you can use backticks (`) to escape the reserved keywords in your queries.

$query = "SELECT * FROM `table` WHERE `select` = 'value'";
$result = mysqli_query($connection, $query);