Displaying a
Displaying a
 
<?
$sweets = array('A','B','C','D');

function show_form() {
    print<<<_HTML_
<form method="post" action="$_SERVER[PHP_SELF]">
Your Order: <select name="order">

_HTML_;
foreach ($GLOBALS['sweets'] as $choice) {
    print "<option>$choice</option>\n";
}
print<<<_HTML_
</select>
<br/>
<input type="submit" value="Order">
<input type="hidden" name="_submit_check" value="1">
</form>
_HTML_;
}
?>
  
  
Related examples in the same category
1. Form select input
2. An HTML Form Including a SELECT Element
3. A
4. A day choice
5. An HTML Form with a select Element
6. Validating a drop-down menu with in_array()
7. Generating a dynamic pull-down menu
8. Setting a default value in a
9. Setting defaults in a multi-valued
10. Creating Form Elements Based on the Current Time and/or Date
11. Creating Form Elements with Multiple Options
12. One choice for each day from 1 to 31
13. One choice for each year from last year to five years from now
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.