Jump to content

Recommended Posts

Hello, I am using two frames, one for navigation and the other for content.  The navigation will display news and other information if there is not a session set, the content, once logged in will set the session then reload the menu frame, however the menu frame isn't picking up on this and continues to display the news and other info.

 

edit: Even if I manually reload the navigation menu frame, it doesn't detect the session =(

 

Menu page.

 

<php
     include 'connect.php';
?>
<?php
if (isset($_SESSION['player'])) 
  {
    echo "<a href=\"overview.php\" target=\"content\"><p align=\"center\">Overview</p></a>";
    echo "<a href=\"town.php\" align=\"center\" target=\"content\"><p align=\"center\">Town</p></a>";
    echo "<a href=\"charsheet.php\" align=\"center\" target=\"content\"><p align=\"center\">Character Sheet</p></a>";
    echo "<a href=\"skills.php\" align=\"center\" target=\"content\"><p align=\"center\">Skills</p></a>";
    echo "<a href=\"market.php\" align=\"center\" target=\"content\"><p align=\"center\">Market</p></a>";
    echo "<a href=\"guild.php\" target=\"content\"><p align=\"center\">Guild Hall</p></a>";
    echo "<p align=\"center\"><img src=\"images/standard.jpeg\" align=\"middle\"></p>";
    echo "<p align=\"center\">HP: xxx/xxx</p>";
    echo "<p align=\"center\">IP: xxx/xxx</p>";
  }
else
  {
    echo "<h2>News:</h2>";
    echo "<p>Frame and menu added 05-26-2010</p>";
    echo "<p>Registration live 05-18-2010</p>";
}
?>

 

Snippet from the authentication page.

 

if($result2)
    {
       session_start();
       $_SESSION['player']=$player;
       print "logged in successfully<br><br>";
       print "<A href='content.php'>Play!</a>";
       print("<script language ='javasript'>top.menu.locatin.reload();</script>");   
    }

 

Link to comment
https://forums.phpfreaks.com/topic/202941-using-sessions-between-two-frames/
Share on other sites

Thank you, it does output correctly, but gives the following for either logged in or out:

 

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent

 

I'm sure it's something simple, I'll be the first to admit I'm still very new (the session_start is directly below the opening php tag with nothing before it.)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.