Posts
 
Reputation
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
~3K People Reached
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for aveeva7

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) …

Member Avatar for Supun_1
0
3K

The End.