Hello,
I have a very large form that I broke into 2 parts. After completing the first part, one should be taken to the second part and they are. The data from the first part is properly entered into the table and all is well. However, when the user submits the second part it just brings them back to the first part. Please help.
if ($next) {
$sql = "INSERT INTO inter1 . . . .
$result = mysql_query($sql);
include("next.inc.php");
} else{
// display form
Is there a better way to display the second part of the form without placing all that code into the same file?
Thank You