Jump to content

Session Values Not Working - ?


jjmusicpro

Recommended Posts

Not sure why my session values are not working, any ideas here?

 

config_page.php

<?php

//Config Information

session_start();

$_SESSION['portal_title'] = 'Cool Title'; // Portal Title

?>

 

index.php

<?php include("includes/config.php") ?>

 

<html>

<head>

<title><?php echo $_SESSION['portal_title']; ?></title>

</head>

<body>

My title is <?php echo $_SESSION['portal_title']; ?>

</body>

</html>

Link to comment
https://forums.phpfreaks.com/topic/203287-session-values-not-working/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.