08-07-2012, 05:11 AM
[eluser]ppwalks[/eluser]
The easiest way to do it is build the select manually, so as simple as this:
Does that make sense?
The easiest way to do it is build the select manually, so as simple as this:
Code:
<select name="your_select" id="">
<option value="">Please Select</option>
<?php foreach($youvar as $var) {
echo "<option value='".$var['your_id_value_from_database']."'>'".$var['select_name']."'></option>";
}
?>
</select>