i have got this code in my connect.php
  $firstname=$_POST['firstname'];
$_SESSION['firstname']=$firstname;
And this in my Main.php
$_SESSION['firstname']=$firstname;
echo $firstname;
But it gives me this error Undefined variable: firstname in
In your connect you should have something like
<?php
session_start();
$_SESSION['firstname'] = $_POST['firstname'];
and in Main.php
<?php
session_start();
echo $_SESSION['firstname'];
 
    
    
'; var_dump($GLOBALS);` at *the bottom* of your script or just before where the error is thrown and see what's held in them – Can O' Spam Nov 18 '15 at 14:23