Page 1 of 1

E-mail subject form

Posted: Tue Apr 13, 2004 8:28 am
by ssj4gogita4
Does anyone know how to add a box that has a selection of subjects for an email form? Check out my site at http://www.spongebobmania.com/ and go to "Staff"

Posted: Wed Apr 14, 2004 8:07 am
by phait
suggest a select menu:

Code: Select all

<select name="nameOfYourDropDown">
<option value="">Select a subject below</option>
<option value="1">Rod</option>
<option value="2">Jane</option>
<option value="3">Freddy</option>
</select>
Just change the values to be whatever you want them to be. The text that will appear on screen is placed in-between the <option> tags.

You could also learn html here, which would save you a lot of time:
http://www.w3schools.com

and click on the html option on the left hand side.


hth