I\'m pretty new to php.. and this is probably a stupid mistake... but I have no idea what is going on. I\'m trying to create a table in my database using php. I want to name
Use a heredoc:
$create = <<
Notably, you can use string interpolation in a heredoc, but you should really tend toward parametrized queries.