|
|
Home Manual 11. API Reference mosHTML::monthSelectList |
| mosHTML::monthSelectList |
|
|
|
|
Last reviewed: Not reviewed mosHTML::monthSelectListA convenient method for producing a list of months in an HTML form field using the current language settings. Syntaxstring monthSelectList ( string $tag_name, string $tag_attribs, mixed $selected )
ExamplesExample: $html = mosHTML::monthSelectList( 'month', 'class="inputbox"', '01' ); echo $html; which produces: <select name="month" class="inputbox"> <option value="01" selected="selected">January</option> <option value="02">February</option> <option value="03">March</option> <option value="04">April</option> <option value="05">May</option> <option value="06">June</option> <option value="07">July</option> <option value="08">August</option> <option value="09">September</option> <option value="10">October</option> <option value="11">November</option> <option value="12">December</option> </select> Please report any errors on this page to the Developer Documentation Forum. |
|
| Last Updated ( Saturday, 03 September 2005 ) |
| < Prev | Next > |
|---|





