I want this code to call process.php when I select something in the drop down list. How can I do this?
echo '<html>';
echo '<body>';
echo '<form action="process.php" method="post">';
echo '<select name="item">';
echo '<option>1</option>';
echo '<option>2</option>';
echo '<option>3</option>';
echo '</select>';
echo '</form>';
echo '</body>';
echo '</html>';