Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.65K
1 Posted Topic
If you need both to be request from the browser, using POST, you can use AJAX. <form onsubmit="handleSubmit()"> </form> <script type="text/javascript"> function handleSubmit(e) { e.preventDefault(); // then two ajax request // may be you can use jQUery } </script> If you just need to execute both files, [include or require](https://developer.hyvor.com/tutorials/php/include-require) …
The End.
Supun_1