Luckily, this is for a client and not an aff network, and they are fully aware of what I'm doing for them (or trying), so referrers are not an issue.
Anyhow, I tried just duplicating this:
Code:
$Curl_Session = curl_init('http://SiteA.tld/page1.php');
curl_setopt ($Curl_Session, CURLOPT_POST, 1);
curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, "blah=$blah&etc=$etc");
curl_setopt ($Curl_Session, CURLOPT_FOLLOWLOCATION, 1);
curl_exec ($Curl_Session);
curl_close ($Curl_Session);
and changed the url to page2.php. Then I copied page1 and put it up on page2. Well, it works and posts to both places, but it displays both pages on the curl.php page. How can I surpress the display of the second page?
/edit/ coding outside of my basic skillset always makes me feel like a retard. ugh.