So i figure i was going to change my discography table name from 'album' to 'release', coz it made more sense to my anyways... Big mistake! the queries stopped working suddenly... After researching for many hours, i realize that 'release' is a reserve word in mySQL and can be use only if the correct escaping is use. In this case the escaping is the symbol `, like this
<?php
$sql = 'SELECT release.release_id, release.title, release.subtitle
FROM `release`
WHERE release.released_id = 567';
?>
My question is if this is the correct way of escaping a reserved mysql word in PHP? Is there a normalize way of going about this? Thanks