I want to have two different select options which have, let's say, options such as EMAIL or PHONE NUMBER, and when you select the EMAIL option a text box opens below it that says "Enter Email" or when you select PHONE NUMBER option a different text box opens below it that says "Enter Phone #:".
Ps. I don't want both text boxes showing at one time, I want them to select which one to fill. If you have a better way of doing this, please let me know your ideas.
<form action="order-step4.php" method="post">
Please fill out these fields:<br />
Recipient: <input type="text" name="recipient" /><br />
Recipient Email: <input type="text" name="remail" /><br />
Recipient Cell: <input type="text" name="rsms" /><br />
Your Message :<input type="text" name="message" /><br />
<input type="submit">
</form>
Thank you, Chad.
code
<form action="order-step4.php" method="post"> Please fill out these fields:<br /> Recipient: <input type="text" name="recipient" /><br /> Recipient Email: <input type="text" name="remail" /><br /> Recipient Cell: <input type="text" name="rsms" /><br /> Your Message :<input type="text" name="message" /><br /> <input type="submit"> </form>code
Watered down example of the code I have currently. – Chad Cardiff