An HTML Form Including a SELECT Element : Form Select : Form PHP Source Code


PHP Source Code » Form » Form Select »

 

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>nn";
print "Your address is:<p>nn<b>$address</b><p>nn";
print "Your product choices are:<p>nn";
print "<ul>nn";
foreach $products as $value ){
    print "<li>$value<br>n";
}
print "</ul>";
?>
</body>
</html>


-->

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Form
» Form Select