2
votes
5answers
518 views
Jquery Post + run php file > hide the form > give message…
Hi friends,
here is my code about jquery post. I can't make it work somehow. I spent hours :( what I miss here?! when I run the code, It loads same page :(
I want it to run the php code under
…
1
vote
5answers
2k views
How to post JSON to PHP with curl
I may be way off base, but I've been trying all afternoon to run the curl post command in this recess PHP framework tutorial. What I don't understand is how is PHP supposed to interpret my POST, it …
0
votes
1answer
15 views
net/http and posting data to Google Checkout
I'm trying to post form data to Google Checkout using the following code:
x = …
0
votes
1answer
20 views
Interrupting POST request
I'm working on ASP.NET file uploader and currently trying to resolve the following issue:
Assume at some moment the server side HttpModule decides that incoming data stream is too long and must be …
0
votes
3answers
51 views
How do we pass parameters when doing HTTP Post?
I am working on an app where we have to pass specific web api parameters to a web app using HTTP POST.
eg:
apimethod name
parameter1 value
parameter2 value
So do I use a string or URLEncodedPostData …
0
votes
3answers
29 views
Help to convert this PHP code to VB.NET code
Hi
I have a code to send XML via POST. But this code is in PHP and I need it in VB.NET.
Any help to convert this code?
$XMLFile= (here i have created the xml file. XML is encoded ISO-8859)
$ch = …
0
votes
1answer
38 views
How to call a servlet from a jQuery’s $.ajax() function
I am trying to call a servlet from jQuery's .ajax() function.
At the moment I don't think I am even calling the servlet or passing paramaters to it, however lots of Googling doesn't seem to have …
0
votes
2answers
18 views
Perform HTTP Post from within Excel and Parse Results
I have access to an API. The API takes an XML post as input and then returns an XML response with the relevant data.
I want to
Send the HTTP Post to the Server (Authentication and Request will be …
0
votes
2answers
60 views
php associative array and switch
My associative array.
$money = array("Nickels" => $_POST["nickels"], "Dimes" => $_POST["dimes"], "Quarters" =>$_POST["quarters"]);
My html form set up to handle Quarters,
Dimes and Nickels …
0
votes
2answers
23 views
Programmatically access & post a form that requires session
Hello:
I am attempting to use PHP and cURL to:
Access a web-form & maintain session
Post the data to that form with session in place
In my head, I see it as two separate functions, one to get …
0
votes
2answers
86 views
JAVA Buffered Reader HTTP POST
Hello,
Looking for a bit of help, I have currently written a HTTP server. It currently handles GET requests fine. However, whilst using POST the buffered reader seems to hang. When the request is …
0
votes
2answers
18 views
resume uploads using HTTP?
Is it possible to resume interrupted uploads using HTTP Post? I am working on a project that uploads several files to a HTTP server. Thanks.
0
votes
1answer
9 views
Why do I get a CURLE_URL_MALFORMAT when trying to http post?
Here's the code (extracted from an existing application):
CURL *curl = curl_easy_init();
_ASSERTE(curl);
string url = "http://127.0.0.1:8000/";
char *data = "mode=test";
curl_easy_setopt(curl, …
2
votes
4answers
108 views
How to send a HTTP POST Request in Delphi using WinInet api.
Hello, I am trying to make HTTP Requests from Delphi using the WinInet functions.
So far I have:
function request:string;
var
hNet,hURL,hRequest: HINTERNET;
begin
hNet := …
3
votes
5answers
186 views
New Line problem when doing Ajax Post with JQuery
Hello, I'm trying to use Ajax with JQuery, what I want to do is just send multiline textbox value to php with Ajax.
I'm using that code, it sends txtAnswer value to php, unfortunately, it removes new …
