If i had a select box
...
and I had an array of values from 1-12
using ph
You could make your own simple function as below:
function generateSelectFromArray($array){ // echo your opening Select echo ""; // Use simple foreach to generate the options foreach($array as $key => $value) { echo " $value "; } echo ""; }
Usage:
$array = array( 1=>"My first option", 2=> "My second option" ); generateSelectFromArray($array);