Jump to content

Form Question?


jmelwak

Recommended Posts

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>

Link to comment
https://forums.phpfreaks.com/topic/74895-form-question/#findComment-378669
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.