Hi, I am trying to fetch username from session variable of one php page to another php page.
This below code fetch username from login page
<?php
$uname = $_GET['uname'];
@session_start();
if($_SESSION[$uname])
{
?>.... //Remaining Code
When I click submit button to go to my next php page I want the same username to be dispalyed again.
How can I achieve this?