Creando a Combobox con PHP Paul Leger http://pleger.cl
Combo Box en HTML <html><head> <title> Probando a combo-box </title> </head> <body> Mi primer combo-box con HTML: <select> <option value="1"> elemento 1 </option> <option value="2"> elemento 2 </option> <option value="3"> elemento 3 </option> </select> </body> </html>
Combo box en PHP <html><head> <title> Probando a combo-box </title> </head> <body> Mi primer combo-box en PHP: <select> <?php for ($i=0; $i<10; ++$i) { echo "<option value='$i'> elemento $i </option>"; } ?> </select> </body> </html>