If you would like the information sent to your email you can use something like this. It is just a small email form using php and it is easy to use and adjust.
Make a form like this
Code:
<form action="send.php" method="post">
<div>
Name<br />
<input type="text" size="10" name="Name" value="" id="Name" />
<br />
<select name="Color" id="Color">
<option>Select One</option>
<option>Blue</option>
<option>Red</option>
<option>Green</option>
<option>Orange</option>
</select><br/>
<input type="submit" value="Send Message" >
</div>
</form>
and create a file called "send.php" that contains
Code:
<html>
<head>
<title>Your Title</title>
</head>
<body>
<?php
$Name = strip_tags($_POST["Name"]);
$Color = strip_tags($_POST["Color"]);
$message = "<html><body>";
$message .= "Name: $Name<br>";
$message .= "Color: $Color<br>";
$message .= "</body></html>";
$headers = "From: Email From<youremailaddress@a.com>\r\n";
$headers .= 'Content-type: text/html; charset=utf-8';
mail(" Your name <youremailaddress@a.com>","Subject",$message,$headers);
?>
<!-- body of webpage thanking them for submission -->
<h1 align=center>Message Sent</h1>
Thank you for your time in filling out my form.
</body>
</html>
Change youremailaddress@a.com to your email address
change subject to the name of the form
PM me if you need help with it