In the PHP, in the value of $sql, why did we need the \ symbol (twice)?
//do the SQL
$sql = "UPDATE `starwars`.`Films` SET `Title` = 'Star Wars (aka \"A New Hope\")' WHERE `films`.`Episode` = 4";
$dosql = mysqli_query($connection, $sql);
In the PHP, in the value of $sql, why did we need the \ symbol (twice)?
//do the SQL
$sql = "UPDATE `starwars`.`Films` SET `Title` = 'Star Wars (aka \"A New Hope\")' WHERE `films`.`Episode` = 4";
$dosql = mysqli_query($connection, $sql);