[Solved] Passing values between multiple pages php
[ad_1] Put all of that fields in just one form and validate the action or put validation into php before frontend start, I prefer the first one to your case, it’s easier: FILTERING IN THE ACTION <?php if (empty($_POST[‘user_name’])){ $action = ‘page1.php’; $structure = “<h2>Please enter your user name and age</h2>”; $submit=”Review”; } else { … Read more