Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/05/2011, 04:42
ilda
 
Fecha de Ingreso: junio-2001
Mensajes: 277
Antigüedad: 22 años, 10 meses
Puntos: 1
Modulos en php

Hola amigos

Tengo un sitio que hice en php y desde algunos navegadores pueden ver solo el include superior -la cabecera-, y no se ve nada mas del sitio. Aparentemente con el explorer hay muchos problemas. Ya muchos visitantes se han quejado de eso.

Me gustaria saber si me pueden ayudar a solucionarlo. Al sitio lo tengo hospedado en Godaddy, y abajo adjunto el codigo basico de una pagina mi sitio.

Este es el acceso al sitio: acceder

Este es el codigo de la pagina de inicio:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<STYLE TYPE="text/css">
<!--
a:link, a:visited { color: #000000; text-decoration: none }
a:hover, a:active { color: #CC0000 }
BIG { font-size: 10pt; font-family: Tahoma, MS Sans Serif, Arial, "ms sans-serif"; letter-spacing: 1; line-height: 1.1; text-decoration: none }
SMALL { font-size: 8pt; font-family: Tahoma, MS Sans Serif, "ms sans-serif"; font-weight: plain; letter-spacing: 0; text-decoration: none }
-->
</STYLE>

</head>

<body>
<div align="center">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td background="linea_1000_10.jpg">
<div align="center">
<table width="100" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top">
<?php
include("arriba.php");
?>
</td>
</tr>
<tr>
<td align="left" valign="top"><table width="100" border="0" cellpadding="0">
<tr>
<td align="left" valign="top" bgcolor="#FFCC99">
<?php
include("izquierda.php");
?>
</td>
<td valign="top">
<p align="center">&nbsp;</p>

</td>
</tr>
</table></td>
</tr>
</table>
</div></td>
</tr>
</table>
</div>
<p align="left">&nbsp; </p>
</body>
</html>

Última edición por ilda; 27/05/2011 a las 04:52