Sorry, for the misleading and confusing word I express.
OK, here how the program should work.
Normally, if I need to Post the same variable to 3 different URL, I will be visit the page and entering the data then click the Submit button, after that I visit another URL and enter the same data again then click the Submit button again and visit another URL to perform the same task again.
You can see that I doing the same job or duplicating the joy for entering the same data, by submit to different URL.
What I actually thinking is, If I can only enter the data ONCE(since the data for the 3 page are the same) on my Form then when I click the Submit button, the script will take the variable that I enter and Submit to the URL one by one AUTOMATICALLY without anymore clicking the Submit button.
Allow me to give another example like FFA Page (Free For All Link):
In order to submit the my site on that FFA page 1 for listing, I will need to enter the detail like:
Website URL:
Site Description:
Catergory:
After entering the detail using their Form then click the Submit button.
Then I visit another FFA Page 2 and enter the same detail using their Form and click the Submit button again
Again, I visit another FFA Page 3 and enter the same detail using their Form and click the Submit button again.
How can we simplify the task by enter the detail ONCE, then write a script to take the variable and submit to FFA Page 1 then FFA Page 2 and FFA Page 3 AUTOMATICALLY by just click the Submit button ONCE on my Form.
If the above example still confusing, here take a look at the last example:
The normal Form Handle is:
<form method="POST" action="abc.php">
Now let make it POST to 3 different URL:
<form method="POST" action="abc.php, xyz.html, 123.cgi">
(I don't know is this work or not, I never try before, from the tutorial I read never teach me this before, but at least it explain that if I click the Submit button once, the Form will post all the variable to 3 different URL AUTOMATICALLY)
Please help me by suggest me the correct script that I need to use.
Thanks in Advance.