i have working on a php project.I am using session variables.
i have made 2 file to test this issue.
In Test1 file i have set value in session.below is the code.
<?php
session_start();
$_SESSION['test']="demo";
?>
In test2 file i have print this session.
<?php
session_start();
echo $_SESSION['test'];
?>
The session value is display blank in test2 file but it display value in test1 file where session is set.which session value is not carry on other page.this is working perfect on localhost but not working on server.is there issue on server? i have attached server session detail image.