The name/value pairs found in the body of an HTTP POST request.
Questions tagged [http-post-vars]
40 questions
0
votes
1 answer
express-ws communicate variables between front and back end
I am writing a script that checks a devices gyroscope axis's with JavaScript. I need to send a front-end javascript variable, that is updated frequently, sometimes up to a couple times a second, to a back-end node.js variable. I heard that this is…

Skyler Spaeth
- 193
- 1
- 1
- 11
0
votes
0 answers
Retrieve POST parameters Angularjs
How do I retrieve post data in angular.
I have angular app .
My script.js
************
$routeProvider.when('/test1', {
templateUrl : 'html/test1.html',
controller : 'test1Controller'
}).when('/test2', {
templateUrl :…

MaNn
- 745
- 4
- 11
- 22
0
votes
1 answer
How to retrieve HttpPost parameters in c#
So I know that this works:
[HttpPost]
public string functionthatiuse()
{
string id = "";//does nothing
return relevantinfo;
}
Then I use this Chrome POST extension shown below and I have a break point in the function which is how I know it…

GDub
- 544
- 2
- 7
- 15
0
votes
0 answers
Get the instantly added element in PHP $HTTP_POST_VARS
I am working on a webpage which needed to get the field value by matching the field name in the form.
The field's name are in the pattern abc_1, abc_2, abc_3...
Everything are working well in the beginning. The fields with those name can be matched…

user3423149
- 159
- 1
- 1
- 16
0
votes
0 answers
HTTP Post Android webview
I'm trying to implement a function, which passes base64 encoded image from a webview to my web application via HTTP Post. And then, lets say, this image must be shown right away in my view. I've used this example but it didn't work properly, so…

user3232395
- 19
- 8
0
votes
1 answer
Error while installing Poster (Python Module)
I'm trying to install Chris Atlee's python Poster library so I can upload a file using a HTTP POST query from within my script.
On python 2.3, when I type # python setup.py install, I get the following error. The install continues, but I can't >>>…

Pranab
- 2,207
- 5
- 30
- 50
0
votes
1 answer
Unable to get var value inside function
I am trying to get field_1 value into the input text and I tried this code but it doesn't work.
function bbg_add_reg_field() {
$field_1= $_POST["signup_username"];
echo ''; …

Jake Robson
- 3
- 1
0
votes
2 answers
Can JavaScript running in a browser access the values POSTed to it's page?
Possible Duplicate:
How to read the post request parameters using javascript
Imagine two webpages running on different webservers.
Page-A: Has a < form method="POST" action="http://server-b/page-b" >
Page-B: Handles the submission of the form…

jwl
- 10,268
- 14
- 53
- 91
-1
votes
1 answer
Send a File as well as parameters (through JSON) inside one HTTP request
I am creating a server using Go that allows the client to upload a file and then use a server function to parse the file. Currently, I am using two separate requests:
1) First request sends the file the user has uploaded
2) Second request sends…

su619
- 35
- 5
-2
votes
2 answers
$_POST['input'] into PHP define string
I am attempting to insert the $_POST inputs from a form into a php page. Is there any reason that this shouldn't work? I'm not getting any errors, but I am also not getting the intended result
HTML