Se trata de listas enlazadas, dependientes, usando ajax (eso creo) obtengo los datos desde la BD. En firefox funciona perfecto!, Pero en IE no pasa absolutamente nada!.
Aparentemente, cuando la consulta a la BD devuelve el "echo", IE no crea los <option value.....>.
Aqui les dejo el código a ver si Uds me puede ayudar! Les agradezco muchisimo.
archivo ajax.js
Código:
El formulariofunction objetoAjax(){ var xmlhttp=false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { xmlhttp = false; } } if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp = new XMLHttpRequest(); } return xmlhttp; } function MostrarConsulta(datos){ codi = document.getElementById('codigo').value; divColores = document.getElementById('color'); ajax=objetoAjax(); ajax.open("GET", datos); ajax.open("POST", datos+"?codigo="+codi); ajax.onreadystatechange=function() { if (ajax.readyState==4) { divColores.innerHTML = ajax.responseText } } ajax.send(null) }
Código PHP:
<form name="consulta" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="15%" scope="col"> </th>
<th width="85%" scope="col"> </th>
</tr>
<tr>
<td>Artículo:</td>
<td><select name="codigo" id="codigo" onchange="MostrarConsulta('getCities.php'); return false">
<?php
$codigos = mysql_query("SELECT * FROM articulos ORDER BY codigo ASC");
while ($code = mysql_fetch_array($codigos)) {
?>
<option value="<?php echo $code['codigo']; ?>"><?php echo $code['codigo']; ?></option>
<?php
}
mysql_free_result($codigos);
?>
</select>
</td>
</tr>
<tr>
<td>Color:</td>
<td><select name="color" id="color">
</select>
</td>
</tr>
<tr>
<td>Talle:</td>
<td><select name="talles" id="talles">
</select>
</td>
</tr>
<td><input type="reset" name="button2" id="button2" value="Borrar" />
<input type="button" name="Submit" id="button" value="Pedir Producto" /></td>
</tr>
</table>
</form>
Código PHP:
<?php
include('dbase.php');
// Conexión a la base de datos
mysql_connect ($dbhost, $dbusername, $dbuserpass);
mysql_select_db($dbname) or die('Cannot select database');
$codigo = $_GET['codigo'];
$color = mysql_query("SELECT * FROM articulos_colores WHERE codigo_articulo ='$codigo'");
while($cod = mysql_fetch_array($color))
{
echo "<option value='color1' id='color1'>".$cod['color']."</option>";
}
?>