I've got a value list that is pulled from the database. Is there a way to have the field
blank? I tried having a blank record, but it doesn't list the blank record. The Value
List is based off all entries in that field, so it is 'live'. I ws hoping I could do
something like < value="" > somewhere.
<select name="Current Mentor">[FMP-option: Current Mentor, list=Mentor]</select>

Signature
"... respect, all good works are not done by only good folk ..."
-till next time, Jameson Stalanthas Yu -x- <<poetry.dolphins-cove.com>>
consul@INVALIDdolphins-cove.com ((remove the INVALID to email))
Tim 'Webko' Booth - 31 May 2004 05:45 GMT
> I've got a value list that is pulled from the database. Is there a way to have the field
> blank? I tried having a blank record, but it doesn't list the blank record. The Value
> List is based off all entries in that field, so it is 'live'. I ws hoping I could do
> something like < value="" > somewhere.
>
> <select name="Current Mentor">[FMP-option: Current Mentor, list=Mentor]</select>
Put the blank one in the code manually:
<select name="Current Mentor">
<option value="">--</option>
[FMP-option: Current Mentor, list=Mentor]
</select>
Cheers
Webko