El problema que tengo es que utilizando Iexplorer no se ven las noticias y me muestra solo el titulo y el resto en blanco, en cambio en Firefox no tengo niun problema. Lo que creo es que por algun motivo no me resuelve la consulta que hace el script con IE.
Este es el Script...
//Aqui es la presentacion de la noticia, uso un iframe por peticion de los diseñadores.
Código PHP:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body background="noticias2.jpg" bgproperties="fixed">
<?
include("conection.php");
$resultado=mysql_query("select * from noticia order by id DESC limit 1");
while($r = mysql_fetch_array($resultado)) {
$titulo = $r['Titulo'];
echo "<table><tr>";
echo "<td align='center'><p><strong>$titulo</strong></p></td>";
echo '</tr><tr "><td><iframe src="notia.php" width="494" marginwidth="0" height="501" marginheight="17" frameborder="0" name="conte" id="conte" scrolling="auto"></iframe>';
echo "</td></tr></table>";
}
?>
</body>
Código PHP:
<?
include("conection.php");
$resultado=mysql_query("select * from noticia order by id DESC limit 1");
while($r = mysql_fetch_array($resultado)) {
$des = $r['Descripcion'];
echo html_entity_decode($des);
}
?>
Alguien que me ayude porfavor :S
Saludos!