i input a username in a textfield this is in 1st page
in next page i want to display this username in a form
how to do?
Code:
<?php
if(isset($_POST['Submit']))
{
$username=$_POST['textfield'];
}
?>
how to do?
Comment