Aquí esta la página que funciona en FF pero no en IE.

<?php //header('Content-Type: text/html; charset=UTF-8'); ?>
<?php include("includes/session.php"); ?>
<?php include("seguridad.php"); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><?php echo $tituloSitio; ?></title>
<link href="css/estilos.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="js/api.js"></script>
<script language="JavaScript" type="text/javascript"
src="js/global.js"></script>
<script language="JavaScript" type="text/javascript" src="js/photo.js"></script>
<script language="JavaScript" type="text/javascript"
src="js/xmlhttprequest.js"></script>
<SCRIPT type=text/javascript runat="client">
id_usuario = '<?php echo $_SESSION[usuario_id]; ?>';
</SCRIPT>
</head>
<body>
<div id="main">
  <?php include("includes/inc_top.php"); ?>
  <?php include("includes/funciones.php"); ?>
  <table width="100%"  border="0" align="center" cellpadding="0"
cellspacing="0" class="contenido">
    <tr>
      <td class="columna"><?php include("includes/inc_menu_panel.php"); ?></td>
      <td valign="top"><table width="100%"  border="0" cellspacing="0"
cellpadding="5">
          <tr>
            <td valign="top"><h1>&raquo;&nbsp;Mis Fotos </h1></td>
          </tr>
          <tr>
            <td valign="top"><table width="90%" border="0"
align="left" cellpadding="2" cellspacing="0">
                <?php
                                  $tablaFotos = $dbPref."fotos";
                                  $id_usuario = $_SESSION['usuario_id'];
                                  $consulta = mysql_query( "SELECT * FROM 
$tablaFotos WHERE
id_usuario = $id_usuario ORDER BY fecha_subida DESC LIMIT 0,10" ) or
error( mysql_error() );
                                  $i = 1;
                                  while  ( $renglon = mysql_fetch_array 
($consulta)  ) {
                                  echo $i % 2 == 1 ? "<tr valign=\"top\">\n" : 
"";
                                  $id_foto = $renglon[id];
                                  ?>
                <td width="240" height="240" valign="top"
align="left"><a name="photo<?php echo $renglon[id]; ?>"></a>
                      <div id="image_<?php echo $renglon[id]; ?>_normal">
                      <script language="Javascript">
                                          photo_hash['<?php echo $renglon[id]; 
?>'] = new Object();
                                          photo_hash['<?php echo $renglon[id]; 
?>'].title = '<?php echo
$renglon[titulo]; ?>';
                                          photo_hash['<?php echo $renglon[id]; 
?>'].description = '<?php
echo $renglon[notas]; ?>';
                                      </script>
                      <table width="240"  border="0" cellspacing="0"
cellpadding="3">
                        <tr>
                          <td><a name="photo<?php echo $renglon[id]; ?>"></a>
                            <h4 id="title_div<?php echo $renglon[id];
?>" style="margin-bottom: 0px; margin-top: 0px; font-size: 14px;
width: 240px;">
                              <?php 
                                                  $tablaFotos = $dbPref."fotos";
                                                  $consulta2 = mysql_query( 
"SELECT * FROM $tablaFotos WHERE id
= '$id_foto' " ) or error( mysql_error() );
                                                  $renglon2 = 
mysql_fetch_array($consulta2);
                                                  echo $renglon2[titulo]; 
                                                  ?>
                            </h4>
                            <script
type="text/javascript">initPhotosUserPageTitle_div('<?php echo
$renglon[id]; ?>');</script></td>
                        </tr>
                        <tr>
                          <td><a href="foto.php?idfoto=<?php echo
$renglon[id];?>"><img src="fotos/<?php echo
$_SESSION['usuario_conf_url']; ?>/medianas/<?php echo $renglon[id];
?>_fotom_<?php echo $id_usuario; ?>.jpg" border="0" class="borde"
/></a></td>
                        </tr>
                        <tr>
                          <td><div id="description_div<?php echo
$renglon[id]; ?>" style="width: 240px;"><?php echo $renglon[notas];
?></div><script
type="text/javascript">initPhotosUserPageDescription_div('<?php echo
$renglon[id]; ?>');</script></td>
                        </tr>
                        <tr>
                          <td><p class="mini">Subida el día: <?php
echo date("d.m.Y", $renglon[fecha_subida]); ?></p></td>
                        </tr>
                      </table>
                    </div>
                  <?php
                                  echo $i % 2 == 0 ? "    </tr>\n" : "";        
                
                                  $i++;
                                  }
                                  ?>
                  </td>
              </table></td>
          </tr>
          <tr>
            <td valign="top">&nbsp;</td>
          </tr>
          <tr>
            <td valign="top">&nbsp;</td>
          </tr>
        </table></td>
    </tr>
  </table>
</div>
</body>
</html>


-- 
Saludos Atte.

Ignacio D. Giri 
Rosario, Argentina
_______________________________________________
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a [email protected]
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://ovillo.org/mailman/listinfo/ovillo

Responder a