How manage session between three page in php.
PHP do you want user visit first page then and then go second. user can't go directly on secong page using web URL. e.g. login validation required for future process. below i written three php file and creating session between this file . f irst page index.php <!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <?php session_start(); if ($_SESSION['name'] != "$name") { $curren...