Jump to content
Server Maintenance This Week. ×

Value List


This topic is 8683 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 2 weeks later...

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).]

Link to comment
Share on other sites

This topic is 8683 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.