Hallo
Ich möchte gern wissen wie man am besten Select Felder in ein PHP Script einbindet
vielen Dank im vorraus
Ich möchte gern wissen wie man am besten Select Felder in ein PHP Script einbindet
vielen Dank im vorraus
<td valign="right" width="120"> <font size="2" face="Arial" color="red"> <em><strong>Product Selection:</strong></em> </font> </td> <td><select size="1" name="products1"> <option value="select">Selection</option><?php $values = array(5, 12, 6, 13, 7, 1, 11, 4, 2, 10, 9); foreach ($values as $val) echo ' <option value="', $val, '"', ($products1==$val ? " SELECTED":""), '>', $val, '</option>'; ?> </select></td>
Kommentar