Seach

list control example in php

<html>
<body>
<form name="form1" method="post">
<select name="choice">
<option>Apple</option>
<option>Banana</option>
<option>Mango</option>
<option>Grapse</option>
</select>
<input type="submit" name="save" value="Save">
</form>
</body>
</html>
<?php
if(isset($_REQUEST['save']))
{
    echo $_REQUEST['choice'];
}

?>