POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form.
0
votes
0answers
8 views
Getting $_POST variables that contain variables in wordpress template
I want to get a variable value from a form in php
i use this
var voornaam =$('#voornaam').val();
$.post(this,{ voornaam:voornaam,function(output){});
i try to get the value in php with
<?php
...
0
votes
0answers
11 views
Google Maps JS API v3 - Post Page is Losing Map After Map Resize
i'm using this code to make my map fullscreen. http://www.doogal.co.uk/FullScreen.php But in my ASP.NET page i've got a timer which is doing postback every 5 seconds. This fullscreen button is ...
0
votes
0answers
7 views
getting a 404 when trying to upload a file to the google drive api, suspecting a data formatting issue
Im trying to save some dynamically generated data (json) to a (new) file on my google drive using JS but i keep getting these unhelpful errors on my POST.
At first I thought I was POSTing to the ...
0
votes
1answer
38 views
Perform Delphi POST without Indy or other 3rd party module
Does anyone have a snippet of pure delphi on how to perform a web POST using Delphi with only native Delphi 2010 functionality?
-1
votes
0answers
32 views
Do I need to use all the form data or am I doing it wrong for POST request [closed]
I am essentially wanting to send a POST request to this page ' http://www.roblox.com/User.aspx?Id=1/ '. But it is erroring when I send certain form data.
Typically I want to clone the POST request ...
0
votes
0answers
8 views
Rest reading a long using @QueryParam always returns 0 when using @POST
I send the following ajax call to my JBoss server (using jQuery):
$.ajax({
type: "POST",
url: "http://localhost/services/v1/online/123/abc",
data: {
"status": 100
},
contentType: ...
0
votes
0answers
5 views
How to use Stanford Part of Speech tagger in Netbeans 7.0?
I'm new in Stanford Part of Speech tagger. How i will use it? I don't know how to config it. Help me guys. Thanks.
0
votes
1answer
26 views
xmlHTTPRequest POST not sending data
I had xmlHTTPrequest GET script which was working fine, but because of server issues I had to change it to POST method. I am unable to get the data in $_POST variable. When I checked in CHROME ...
-4
votes
0answers
12 views
Can't download Stanford Part of speech tagger [closed]
I want to download the Stanford part of speech tagger but I can't access their website. It always says HTTP error. How I will download their tools? I need your help guys. Thanks!
-6
votes
0answers
23 views
Facebook fun page - automatically post (PHP) [closed]
I have website, when I'm adding news I want to post it automatically on my Facebook fun page.
I need this script with PHP.
Can anyone help me?
Thank you
0
votes
0answers
7 views
Classic ASP POST timed out for few browser clients
We had changed our live DNS settings to DR server last week. After this change we got a complaint from few customers (Especially Mac) that they can save certain pages. When I tried using the same ...
-1
votes
0answers
16 views
Struts2 upload file by POSTing
So I'm trying to integrate wami-recorder into my webapp. The webapp currently is built using the Struts2 framework.
There is an example on StackOverflow here on how to integrate wami-recorder into a ...
3
votes
1answer
50 views
Change language on link click
I have a links such as:
<a href="index.php?lang=en"><img src="images/uk.png" style="height:20px"/></a>
And and included page in index.php:
<?php
session_start();
...
0
votes
2answers
32 views
Parsing JSON response in c#
If it helps, I'm using the CampBX API to get funds in my account. I wrote the following code to make the API Call:
using (var wb = new WebClient())
{
String url = ...
0
votes
1answer
19 views
json request failed to pass json object to php var_dump is empty
i want to pass a json object with ajax request in my js page but when i do it, in php i have the $_POST array empty.
javascript page
function invia(cat,subcat)
{
var tipo = ...