php post raw data - follow post URL












1















i need to post raw data (XML) to an external site, the XML data is good to go, and is working with the below example...



I am using PHP / cURL



normally i do this by cURL, but in this instance, i need to redirect the client to the URL with the post data...



It works using the below code, but it won't redirect the user to the $URL, this method just prints the data while still being in the script on the same server.



eg:
Post from site1.com to site2.com, the below method keeps the client on site1, but needs to redirect the user to site2.com with the raw post data...



$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_xml);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$val = curl_exec($ch);
curl_close($ch);


i have searched all-over but cannot find a method where it functions as a "regular" form submit where the user is redirected to the URL which the data is posted to... but with RAW post data.










share|improve this question

























  • i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

    – hanshenrik
    Nov 24 '18 at 11:11


















1















i need to post raw data (XML) to an external site, the XML data is good to go, and is working with the below example...



I am using PHP / cURL



normally i do this by cURL, but in this instance, i need to redirect the client to the URL with the post data...



It works using the below code, but it won't redirect the user to the $URL, this method just prints the data while still being in the script on the same server.



eg:
Post from site1.com to site2.com, the below method keeps the client on site1, but needs to redirect the user to site2.com with the raw post data...



$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_xml);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$val = curl_exec($ch);
curl_close($ch);


i have searched all-over but cannot find a method where it functions as a "regular" form submit where the user is redirected to the URL which the data is posted to... but with RAW post data.










share|improve this question

























  • i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

    – hanshenrik
    Nov 24 '18 at 11:11
















1












1








1








i need to post raw data (XML) to an external site, the XML data is good to go, and is working with the below example...



I am using PHP / cURL



normally i do this by cURL, but in this instance, i need to redirect the client to the URL with the post data...



It works using the below code, but it won't redirect the user to the $URL, this method just prints the data while still being in the script on the same server.



eg:
Post from site1.com to site2.com, the below method keeps the client on site1, but needs to redirect the user to site2.com with the raw post data...



$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_xml);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$val = curl_exec($ch);
curl_close($ch);


i have searched all-over but cannot find a method where it functions as a "regular" form submit where the user is redirected to the URL which the data is posted to... but with RAW post data.










share|improve this question
















i need to post raw data (XML) to an external site, the XML data is good to go, and is working with the below example...



I am using PHP / cURL



normally i do this by cURL, but in this instance, i need to redirect the client to the URL with the post data...



It works using the below code, but it won't redirect the user to the $URL, this method just prints the data while still being in the script on the same server.



eg:
Post from site1.com to site2.com, the below method keeps the client on site1, but needs to redirect the user to site2.com with the raw post data...



$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_xml);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$val = curl_exec($ch);
curl_close($ch);


i have searched all-over but cannot find a method where it functions as a "regular" form submit where the user is redirected to the URL which the data is posted to... but with RAW post data.







php curl post raw-data






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 13:36









Chris shi

1531211




1531211










asked Nov 23 '18 at 12:56









Dion PedersenDion Pedersen

82




82













  • i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

    – hanshenrik
    Nov 24 '18 at 11:11





















  • i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

    – hanshenrik
    Nov 24 '18 at 11:11



















i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

– hanshenrik
Nov 24 '18 at 11:11







i'm voting to close this as too broad because it seems to be 2 questions, 1: how to hide curl_exec()'s response from the browser (which can be done with CURLOPT_NOBODY), and 2: how to redirect the browser to another url (which can be done with http Location redirects) , and i believe both of these questions are already answered elsewhere on SO

– hanshenrik
Nov 24 '18 at 11:11














0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53447144%2fphp-post-raw-data-follow-post-url%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53447144%2fphp-post-raw-data-follow-post-url%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Academy of Television Arts & Sciences

L'Équipe

1995 France bombings