i am somewhat new to php.
i am trying to use GET in the action of the form with a variable that is not created until after the form submits.
i want it to look like this. (change is in the action)
Code:
<?php echo" <span class='sif'> <form method='post' action='index.php?username='> Username <input type='text' name='username2'><br /> Password <input type='password' name='password2'><br /> <input class='sub' type='submit' value='Submit'> </form> </span> ";
i want it to look like this. (change is in the action)
Code:
<form method='post' action='index.php?username=$TheirUsername'>
Comment