Código HTML:
Ver original//busca empresa recien cotizada
if ($_GET["tipo"]=='20'){
$result = mysql_query("SELECT Numero,empresa FROM empresa".$_SESSION['area_usuario']." WHERE numero=".$_GET['empresa']." and usuario=".$_SESSION['numuser']." order by empresa");
if (mysql_num_rows($result)>0){
$i=0;
$n=1;
$rows=mysql_num_rows($result);
while($i < $rows) {
echo("<tr onclick=".chr(34)."selecciona_empresa(row".$i.".value,".$n.");".chr(34)." onkeypress=avanza(this)>");
echo("
<td id=".chr(34)."fila".$n.chr(34).">".mysql_result($result, $i, "empresa")."
<input type=hidden value=".mysql_result($result, $i, "numero")." name=row".$i."></td>");
$i++;
$n++;
}
}
}
Lo veo solo en Internet Explorer