I try to create a registration process that spans over multiple pages.
In page-1 I have in the first section:
if ($submit == "Opslaan")
{
include ("page-2.php");
exit;
}
When I press the submit-button on page-1 I get redirected to page-2 (with all the values passed through.
In page-2 I have a similar kind of proces to get redirected to page-3. However, I do not get redirected to page-3, but instead I get redirected to a new page-1.
Can you help me to solve this problem?
Regards,
Pierre