Hi
I can't seem to find a solution anywhere for this which seems kinda odd.
I am been sent some xml data via http post to a php script and I am unable to get the script to out the data.
I have tried getting my script to loop through all available vars to see what it is that I am receiving but for some reason it comes up empty.
if(isset($HTTP_POST_VARS)) {
// there is something here cos I know the loop is being executed
//but the following code returns empty
foreach($HTTP_POST_VARS as $key=>$val)) {
echo $key."=".$val;
}
}
Ha snayone got any ideas on how I can output ALL data that is being posted to my script so I can see what I am getting?
s.