softhead Posted July 24, 2000 Posted July 24, 2000 When I put in this code in my format file: <select name="Equipment1" size="1"> [FMP-option: equipment]</select> After it is processed, all that is left is: <select name="Equipment1" size="1"> </select> What am I doing wrong? Thanks, Anita
Keith M. Davie Posted July 25, 2000 Posted July 25, 2000 You have written: <select name="Equipment1" size="1"> [FMP-option: equipment]</select> Have you tried: <select name="Equipment1" value="[FMP-option: equipment]" size="1"></select> or: <select name="Equipment1" value="[FMP-option: equipment]" size="1">[FMP-option: equipment]</select> I haven't. But I hope this helps. Peace Keith M. Davie
softhead Posted July 25, 2000 Author Posted July 25, 2000 I'm not too sure what I did...but I deleted it and typed it in again and it seems to work fine now! Computers...*sigh*. Thanks for your help though! Anita
softhead Posted July 25, 2000 Author Posted July 25, 2000 Actually, I now have another question, how would I add a "other" field onto the select menu so that users can manually add in their own choices? Thanks, Anita
chandra Posted August 2, 2000 Posted August 2, 2000 I'm not sure if this is the best way to do it, but you could try this: code: <select name="Equipment1" size="1"> [FMP-option: equipment] <option>Other </select> I believe you would need create a new field in your database to hold this "Other" manually entered value since you can't input values into a <select>. code: <input type="text" name="Other" value=""> [This message has been edited by chandra (edited August 02, 2000).]
Recommended Posts
This topic is 8947 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now