i'm trying to print out a '$variable' in php as a value in a <select> tag in html.
I need to put the select value in quotes as it HAS spaces in it.
what is the syntax to put quotes around this variable in the output?
eg I need to get
<option value="hi there">hi there</option>
but this doesn't work:
<option value="<?$variable?>"><?$variable?>
</option>