How do make sure that, with my multi page form, users only visit in order, for example, there’s a sort of landing page which users would be directed to if they went to any of the form page first. It would go from the landing page to the first form page through a button. It must be in PHP.
Share
You need track user activity, for ex: if user completes step1 store $_SESSION[‘step’] = 2, then check if user tryes access some step if $_SESSION[‘step’] == currentStep then allow this step, else redirect to $_SESSION[‘step’].