Hey guys... I'm currently making a php Forum / message board and I am working on the Install screen (for the mySQL database). It has 3 pages but I want to be able to pass the information entered on the first screen to both the second and third screens. I tried using a hidden form element on the second to pass the variables on to the third screen... like so...
<form action="install3" method="post" name="install2">
<input type="hidden" name="username" value="<? print($username); ?>">
<input type="submit">
That code was on the second page... the variable $username was passed to it from the first page so I am trying to make another $username to pass to the third page. I hope you understand..