Código PHP:
Ver original
<?php include ("con.php"); $consulta="select id,nombre from prueba"; ?> <html> <head> </head> <body> <form> <select name="nombre"> <option ></option> <?php { echo"<option value='".$fila[0]."'>'".$fila['1']."'</option>"; } ?> <input type="text" name="name" maxlength="50" class="required" /> </select> </form> </body> </html>