I have a form with a submit button. I called the function when I clicked the submit button.
function actionPage(form1) { form1.action="action1.php"; form1.submit(); return(true); }
Now I want the form data to be presented on two different pages. These pages are located on different servers.
I know that we can send data to a specific page in accordance with the conditions, but I'm not sure if we can simultaneously send to two different pages: ie:
function actionPage(form1) { form1.action="action1.php"; form1.submit(); return(true); form1.action="action2.php"; form1.submit(); return(true); }
Now it shows action1.php
source share