 
			
				05/06/2005, 12:56
			
			
			     |  
  |      |  
  |      correjí ese error,y sigue sin reaccionar... les muestro todo el default.php si quieren:   
<?PHP 
session_start(); 
?> 
<html> 
<head>     
<style type="text/css"> 
<!-- 
body { 
SCROLLBAR-FACE-COLOR:#6699CC;  
SCROLLBAR-HIGHLIGHT-COLOR: #6699CC;  
SCROLLBAR-SHADOW-COLOR: #6699CC;  
SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; 
SCROLLBAR-ARROW-COLOR: #FFFFFF;  
SCROLLBAR-TRACK-COLOR: #E3E3E3;  
SCROLLBAR-DARKSHADOW-COLOR: #000000; 
} 
--> 
</style>     
<FRAMESET COLS="*,745,*" FRAMEBORDER="0" BORDER="0"> 
	<FRAME NAME="Blanco" SRC="blanco.html" scrolling="no">   
<frameset rows="98,*" frameborder="NO" border="0" framespacing="0" marginwidth="0" marginheight="0"> 
  <frame src="frame.php" scrolling="NO" noresize>   
  <frameset cols="150,*" frameborder="NO" border="0" framespacing="0"> 
<?php 
if( isset($_SESSION["username"]) && isset($_SESSION["user_password"]) ){ 
?> 
<frame src="menu.php?" scrolling="NO" noresize> 
<?php }else{?> 
<frame src="frame2.php" scrolling="NO" noresize> 
<?php }?>     
<frameset rows="*,84" frameborder="YES" border="0" framespacing="0"> 
<?php 
if( isset($_SESSION["username"]) && isset($_SESSION["user_password"]) ){ 
?> 
<frame src="noticias/index.php" scrolling="NO" noresize> 
<?php }else{?> 
 <frame src="index.php" name="mainFrame" noresize> 
<?php }?> 
  <frame src="frame3.php" name="bottomFrame" noresize> 
scrolling="NO"> 
</frameset> 
</head> 
</html>           |