Tagged Questions
1
vote
4answers
579 views
Javascript + PHP $_POST array empty
While trying to send a POST request via xmlhttp.open("POST", "url", true) (javascript) to the server I get an empty $_POST array.
Firebug shows that the data is being sent. Here is the data string ...
1
vote
3answers
1k views
Using PHP to store results of a post request
Im currently working with an API which requires we send our collection details in xml to their server using a post request.
Nothing major there but its not working, so I want to output the sent xml ...
0
votes
1answer
50 views
Asynchronous HTTPrequest from PHP [closed]
Possible Duplicate:
Asynchronous HTTP requests in PHP
I want to be able to do a POST or GET request from scriptA.php to scriptB.php.
But I don't want scriptA.php to have to wait until ...
0
votes
1answer
50 views
Is it possible redirect to a URL with a POST request rather than a GET request? [closed]
Possible Duplicate:
Redirect with POST data
Is it possible for a script to redirect to a URL with a POST request in PHP?
The code I currently have uses javascript to submit a form when the ...
0
votes
1answer
77 views
Ajax calling PHP Function
So thanks to the response to my previous question, I've tried to make a code to e-mail me if the code is on another site.
Here is my javascript which is intended for a potential code theif to take ...
0
votes
1answer
344 views
iPhone: Try to send html code to a php script (but fail)
I am trying this for an iPhone app in Xcode:
create html code for a website on the fly
sending it to a php-script and getting the response with this code:
NSError * error = [[[NSError ...
0
votes
1answer
864 views
Reading RAW data from a Flash POST Request ( images )
I'm basically interacting with a third party API flash file to send HTTP POST requests to my server.
I know I'm on somewhat the right path because it requires a crossdomain.xml file, and before I ...