Thanks for reading this post.
Straight to point.
I am writing two php script, Script A and B. Both reside on a different web hosting server.
When user fill in a form, their data will be post to Script A.php for processing. While processing, Script A.php will need to tell Script B.php that a new member has singup. After Script B receive the parameters (member related), it will return a "success" or "fail" depends on the result of processing.
So now, I actually need something like POST or GET to post paramaters to another php script, but without user intervention (clicking on submit button on a form).
How can this be achieve?