how to post the single HTML form values to multiple php scripts?
Question by mystery: how to post the single HTML form values to multiple php scripts?
I mean same form to multiple scripts.
Not different forms to different scripts. It is easy
Best answer:
Answer by BestKept
Create your form with something like the following as the form’s action and method.
Now create login.php with the following.
You should be able to utilize $ _SESSION[‘name’], throughout the entire user’s session.
Know better? Leave your own answer in the comments!