PHP - Output and String Handling
You want to store a multi-line SQL query in a PHP variable without parsing variables inside it. Which syntax should you use and why?
$query = ??? SELECT * FROM users WHERE name = '$name'; ???;
