jmelwak Posted October 26, 2007 Share Posted October 26, 2007 Hi everyone, Does anyone know how to make a form that when the user fills it out, he/she can then choose the email address from a drop down menu to send that form to? Any help is greatly appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/74895-form-question/ Share on other sites More sharing options...
premiso Posted October 26, 2007 Share Posted October 26, 2007 You probably want to post this in the html section. Or google html forms Quote Link to comment https://forums.phpfreaks.com/topic/74895-form-question/#findComment-378666 Share on other sites More sharing options...
burtybob Posted October 26, 2007 Share Posted October 26, 2007 Basically you need a drop down menu using the following code and then a form using the good old fashoined <form> tags. <html> <head> <title>My Page</title> </head> <body> <form name="myform" action="your process page" method="POST"> <div align="center"> <select name="mydropdown"> <option value="Milk">Fresh Milk</option> <option value="Cheese">Old Cheese</option> <option value="Bread">Hot Bread</option> </select> </div> </form> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/74895-form-question/#findComment-378669 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.