Postdata is the data sent by an HTTP POST Request, which is one request type of the HTTP Specification. In contrast to the GET Request, it contains a message body which can contain any type of data, like Strings and Binary Data.
Questions tagged [postdata]
193 questions
4
votes
3 answers
How to get string from PHP server to Android?
I create the application to send a text to the server and check if(text != null) return new text values.
My code to do this like:
In PHP Server:
$text = $_POST["text1"];
if($text != null){
echo "Contact1-----".$text."-----10h49 25/03/2016 at New…

Ave
- 4,338
- 4
- 40
- 67
4
votes
1 answer
POST data method automatically
I want to do the following is that i am trying to post data automatically to another url
$postid = $_POST['new'];
$tt = file_get_contents("new1.php");

user2996676
- 43
- 4
4
votes
2 answers
c# sending data to php url
okay so I have a c# console source code I have created but it does not work how I want it to.
I need to post data to a URL the same as if I was going to input it an a browser.
url with data =…

user2847609
- 41
- 1
- 1
- 5
4
votes
2 answers
Kendo UI Grid inline-edit posted data is null
I'm following the demo grid inline-edit in MVC4, but I find the posted gird data in Insert/Edit Controller is null.
code of cshtml as follows:
@(Html.Kendo().Grid()
.Name("Group")
.Columns(columns =>
{
…

user1905916
- 41
- 1
- 2
3
votes
1 answer
send data using flutter-inappwebview to web page
I'm using inappwebview package, which opens a web page. I want to receive some data from my Flutter app to my web page (php/html) or there's may be some better option? Basically the user select a product in the app and then the inappwebview package…

sitara
- 55
- 1
- 6
3
votes
1 answer
Post data in wordpress from java using xmlrpc
I am trying to post data in wordpress using this code but I am getting token null
In place of sXmlRpcURL I have used http://wordpress.com/ and http://sUsername.wordpress.com/ also but both the cases its generating token null.
String sXmlRpcURL=…

Khoyendra Pande
- 1,627
- 5
- 25
- 42
3
votes
5 answers
How can I inspect form data being Posted?
I am reverse engineering an app and I need to see what is in the post data without viewing the form source. Is a there a decent app/plugin to see what is being posted?
I'm looking for something other then packet sniffing.

UnkwnTech
- 88,102
- 65
- 184
- 229
3
votes
1 answer
Wordpress Search with Multiple Post Meta Value Keywords (No Plugin)
I've searched everywhere for an answer to this and keep finding different suggestions, but none that seem to fit my particular needs. I currently have a website using a custom built search (no plugin). Website: GayBarsIn.com
The search functions I…

James
- 31
- 3
3
votes
2 answers
Node.js server just keeps loading with no result.
I have been trying to get my server to work but when I send post data it just keeps loading and no results are given. Here is my noen.js file.
var http = require('http');
var url = require('url');
// Configure our HTTP server to respond with Hello…

user3290741
- 37
- 1
- 1
- 6
3
votes
2 answers
How could I get the response data from sending POST data using the WebBrowser control?
I am wanting to know how I can get the response data after using the WebBrowser control's overload "Navigate" method. Here is an example of what I am doing:
wb.Navigate("https://live.xbox.com/en-US/Friends/List", "", Encoding.ASCII.GetBytes(post),…

Jake
- 181
- 2
- 15
3
votes
2 answers
How can I check the POST data size before I submit it with jQuery?
I have a web app that allows users to add multiple images, and then upload them, along with other data, all at once when they press a Save button. I'm trying to calculate total size of the POST data before it is sent, so that I can break up the…

Matt Baer
- 1,267
- 1
- 12
- 11
3
votes
0 answers
Having problems when trying to login to a website using C++/cli
I've been roughly searching over the internet for some answers to my problem, but I still couldn't figure out how to log in to a website properly.
Firstly, I'm going to explain what I've done until this moment.
» I opened this website:…

Apidcloud
- 3,558
- 2
- 21
- 23
2
votes
1 answer
Is `if($_POST)` a reliable means of checking if a script has been posted?
As per the title: is if($_POST) reliable?
Is it reliably true even if no data was posted but the HTTP POST method was used?
Is if('post' === strtolower($_SERVER['REQUEST_METHOD'])) a more reliable method, or is it overkill?

Matt
- 9,068
- 12
- 64
- 84
2
votes
0 answers
Post data Chrome Extension
!!Question edited
Sorry for my english. I hope you can help me. Thank you
I'm making a google chrome extension .
the purpose of the application:
Clicking on the Chrome extension will take the price of the product on the current site. Then it will…

erdemozc
- 21
- 2
2
votes
1 answer
.NET Core API - Why is file attribute in nested model receives null?
I have a nested model. When I make a post request with Postman I can get all attributes except the nested File attribute. Why do only nested file attribute comes null and what is the solution?
The nested model and screenshots of the request are…

emy
- 664
- 1
- 9
- 22