Latelly I’ve seen a lot of PHP/MySQL questions that enclose SQL values within {}, for instance:
SELECT * FROM table WHERE field LIKE '{$value}';
What’s up with that? Is it even valid? Why do so many people use this weird (at least for me) syntax?
From php.net: