Hello everyone,
I have 3 forms. Fist is an insert, leads to a second which is an update.
So far I have got everything working.
Second form leads to third form which is an insert.
I am not able to pass into a field in the third form, the corresponding value from the second form.
on form2.php I have:
<?php
session_start();
$session_username=$HTTP_POST_VARS['username'];
session_register("session_username");
?>
on form3.php I have
<form action="code_form3.php" method="post">
<input type='text' name='username' value='<?php if(isset($POST['username'])) echo $POST['username']; ?>'>
What am I doing wrong?