How to i move information posted in one form to another?
Code done on login form.
Code done on loginarea(where the name is to be displayed)..
Code done on login form.
Code:
<?php // this starts the session session_start(); // this sets variables in the session $_SESSION['username']=$_POST['username']; ?>
Code:
<?php // this starts the session session_start(); // echo variable from the session, we set this on our other page echo "welcome ".$_SESSION['username']; ?>
Comment