Hi, i have a page where i get the values of a field on a database for a combobox (select), if i open the page in a Mozilla browser the pages is fine, but if i open in a Internet Explorer Browser the data appears out of the select.
This is happening in all the pages where i have a select (combobox) getting data from a database.
I attached picture of the page result.
This is the code:
<?php
$link = mysql_connect("localhost", "root","datatec1");
mysql_select_db('intranet');
echo "<p align=\"center\"><form action='index.php?o=8' method=\"post\">";
$result=mysql_query("SELECT nombre from institucion");
echo "<p align=\"center\">";
echo "<select name=\"opcion\"><option value=\"\">Seleccione Institución</option>";
echo "<INPUT TYPE='hidden' name=\"opcion\">";
while ($rows=mysql_fetch_array($result))
{
$opcion=$rows['nombre'];
echo "<option value=\"$opcion\">$opcion</option>";
}
echo "</select>";
echo "<br>";
echo "<br>";
echo "<input type='submit' name=\"Buscar\" value=\"Buscar\">";
echo "<input type='reset' value=\"Cancelar\">";
?>
I need to resolve this as soon as possible.
Thx 4 help
Ana Elisa Martínez
aelma