Re: populate pulldownbox from query [message #174056 is a reply to message #174051] |
Fri, 20 May 2011 20:06 |
Denis McMahon
Messages: 634 Registered: September 2010
Karma:
|
Senior Member |
|
|
On Fri, 20 May 2011 11:30:02 -0700, Co wrote:
> Can anyone help me here?
General observation, html attributes, such as the select name, option
values etc should be enclosed in quotes at the html level, such as one of
the following:
echo "<option value='$some_var_name'>some text</value>";
echo "<option value=\"$some_var_name\">some text</value>";
echo '<option value="$some_var_name">some text</value>';
Rgds
Denis McMahon
|
|
|