Hola compañeros. estoy intentando acer funcionar Easy Gallery en mi web pero no se que ocurre que la pantalla no para de refrescarse. Tengo todo el codigo dicho como en el manual de Easy Gallery. Ademas las etiquetas finales de body y html, dreamweaver me las coloca en amarillo como si fuesen erroneas. Necesito ayuda porfavor!!!
aqui os coloco el codigo de galeria.php
Código PHP:
<?PHP
session_start ();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="../lea.css">
<title>Club de Balonmano Lea Corazonistas</title>
<style type="text/css">
<!--
body {
background-image: url(../img/fondo.jpg);
background-repeat: no-repeat;
}
.Estilo3 {color: #000000}
-->
</style>
<!--[if lt IE 7.]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->
<script type="text/javascript" language="javascript" src="lytebox/lytebox.js"></script>
<link rel="stylesheet" href="lytebox/lytebox.css" type="text/css" media="screen" />
</head>
<body>
<?PHP
include("lib/conexionUsuario.php");
if (isset($_SESSION["usuario_valido"]))
{
?>
<table width="800" border="0" align="center" cellspacing="0">
<tr>
<td><img src="../img/quiniela.png" width="800" height="200" /></td>
</tr>
<tr>
<td><div align="center">
<script webstyle4>document.write('<scr'+'ipt src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="../menur/restringido.js">'+'</scr'+'ipt>');/*img src="../menur/restringido.png" moduleid="menurestringido (Project)\restringido_off.xws"*/</script>
</div></td>
</tr>
<tr>
<td></td>
</tr>
</table>
<p align="center"><?php include("EasyGallery.php");?></p>
<p>
<?PHP
}
else
{
print ("<BR><BR>\n");
print ("<P ALIGN='CENTER'>Acceso no autorizado</P>\n");
print ("<P ALIGN='CENTER'>[ <A HREF='zona.php' TARGET='_top'>Conectar</A> ]</P>\n");
}
?>
</p>
</body>
</html>
Gracias de antemano!!