Cita:
Iniciado por alonsoandres asegurate que session_start(); este antes del <header>, o postea el codigo completo para analizarlo.
si, muchas gracias, este es el codigo:
Código HTML:
<html>
<head>
<title>Pagina Principal</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #CACACA;
background-image: url(bg.png);
}
.Estilo1 {
font-size: 24px;
font-weight: bold;
}
a:link {
color: #FF0066;
}
a:visited {
color: #FE0066;
}
a:hover {
color: #0066FF;
}
a:active {
color: #0066FF;
}
.Estilo4 {font-size: 38px; font-weight: bold; }
.Estilo5 {font-size: 18px; font-weight: bold; }
.Estilo6 {font-size: 18px}
body,td,th {
color: #000000;
}
-->
</style><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body>
<div align="center">
<table width="700" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="Gráfico2.png" width="249" height="98"></td>
<td bgcolor="#FFFFFF"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" width="700" height="150" title="menu">
<param name="movie" value="menu.swf">
<param name="quality" value="high">
<embed src="menu.swf" quality="high" pluginspage="" type="application/x-shockwave-flash" width="700" height="150" ></embed>
</object></td>
</tr>
</table>
<p> </p>
<p class="Estilo6"> </p>
<p class="Estilo6"><a href="contrasena.php"><img src="Gráfico2.png" width="249" height="98" border="0"></a></p>
<p class="Estilo4"> </p>
<p class="Estilo4"><span class="Estilo6">
[PHP]<?PHP
if($usuario=="admin" && $pass=="123")
{
$valido="si";
} else {
$valido="no";
}
if($valido=="si")
{
session_start();
$_SESSION['login']='si';
echo 'Se ha iniciado la sesion correctamente';
}
else
{
?>[/PHP]
<script type="text/javascript">
location.href="contrasena.php";
</script>
<?
}
?>
</span></p>
<p class="Estilo6"> </p>
<p class="Estilo6"> </p>
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td background="ladrillo.png"> </td>
</tr>
</table>
</body>
</html>