Source Code : An HTML Form Including a SELECT Element
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
An HTML Form Including a SELECT Element
<html>
<head>
<title>An HTML form including a SELECT element</title>
</head>
<body>
<form action="formSelectData.php" method="POST">
<input type="text" name="user">
<br>
<textarea name="address" rows="5" cols="40"></textarea>
<br>
<select name="products[]" multiple>
<option>option1
<option>option2
<option>option3
<option>option4
</select>
<br>
<input type="submit" value="OK">
</form>
</body>
</html>
<!-- formSelectData.php
<html>
<head>
<title>Reading input from the form</title>
</head>
<body>
<?php
print "Welcome <b>$user</b><p>
";
print "Your address is:<p>
<b>$address</b><p>
";
print "Your product choices are:<p>
";
print "<ul>
";
foreach ( $products as $value ){
print "<li>$value<br>
";
}
print "</ul>";
?>
</body>
</html>
-->
Thank with us