I think I didn't express well. Let me be more specific. In the second form, for example, the user will fill a text box with names of persons holding that names until he decides to submit it to the first form. In the first I need to get that five names and then store then to database.
Look at the code for the example of the second form.
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" >
<p>name:
<input type="text" name="textfield">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
<p>Here is the list he added</p>
<p>John<br>
Mike<br>
Rachel<br>
Lion </p>
<p> </p>
</form>
</body>
See, how to acumulate those names in the input method. I have to get the previous name and add with the next one. Look, I could save that data to the database, but if the user don't agree to save it in the first form, I will get trash data that I will have to always take care to clean. So, the second form, depends on the first one.
Thanks