$foo = <%= bar %>
if bar is being passed in as just baz
(no quotes) php will complain.
if bar is being passed in as "baz"
(with quotes) it will work fine.
if I do something like:
$foo = "<%= bar %>"
bar can be passed in directly without quotes and it will Just Work