There is a contact form which current action is http://www.siteA.com/ContactInfo.php
, it sends fields and values.
In ContactInfo.php, i just catch the values and send and email to y@z.x
BUT, inside ContactInfo.php, I need to send the same data to another destination, in other domain http://www.SiteB.com/Reg.aspx
I have tryed out to create an http POST request to SiteB, but It doesn't work, even with another file in the same site.
I have not the code right now, but it's similar to this structure.
<? php
//ContactInfo.php
// CATCTH VALUES and SEND EMAIL
// CREATE Http POST REquest to another www.siteB.com/Reg.aspx
?>
I have tryed out using... HttpRequest object, cURL, and the other one...i can't remember the name.