Questions tagged [postdata]

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.

193 questions
-1
votes
1 answer

Reading a API POST

How do I read all the users from this POST. { "refId":"455", "users": [ { "name":"tom", "address":"adres1", "city":"city1" }, { "name":"JAck", "address":"adres2", …
Koen Amant
  • 17
  • 3
-1
votes
1 answer

submit data from one workbook to another workbook

I need to post/submit data from the source workbook to the destination workbook(id) > worksheet I have achieved this task by using the below code, but I need help posting to a different workbook >…
-1
votes
1 answer

data table form input updating form fields error

I am using the data table, In which one column contains input field. Now the problem is when I tried to update this field if the pagination is there only the current page data is submitting instead of all fields Any solution here? Code…
user9299161
-1
votes
2 answers

How to upload a file from POST request. CONTENT_TYPE: application/octet-stream. Perl

I get a POST request with CONTENT_TYPE: application/octet-stream I get all data like this my $cgiQuery = CGI->new() or die(); my $cgiData = $cgiQuery->Vars; my $getQuery = CGI->new($ENV{QUERY_STRING}); my $getData = $getQuery->Vars; foreach my…
-1
votes
1 answer

Postdata formatting

I have a quick question about the formatting of postData in c#. Below is what I believe to be the post data extracted from google chrome. The data is related to creating an email. If anyone has any advice or spots any errors that would be really…
-1
votes
1 answer
-1
votes
1 answer

Scraping website post data with PHP

I have a website that want to scrap www.tiketux.com And I want fill this form so I can get data in www.tiketux.com/book/pilihjadwal I found this post data like…
-1
votes
3 answers

android null pointer exceptions in AsyncTask

I'm just starting to write under the android and ran into the problem that I do not know how to solve PostData.java import java.io.FileInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import…
Alex
  • 368
  • 2
  • 13
-1
votes
3 answers

connect a php $post_data[ with html code

I have the following code: $value) { $post_items[] = $key . '=' . $value; } $post_string = implode ('&',…
-1
votes
1 answer

jqGrid custom interface filtering

I have a jqGrid which has an inbuilt filter and also i have my own interface for filtering grid data.. my interface is a jsp page loaded inside a dialog box.and i have a button in the navigator.. clicking on the button displays a dialog box with my…
-1
votes
2 answers

Sending post data using html a tag

I would like to send POST data using an html tag. I know that there is no way doing this unless i script. However i tried , but couldn't get it to work. '…
omar.furrer
  • 285
  • 6
  • 12
-2
votes
1 answer

How to get unique id from array implode when passing value through multiple selection php

How to get each value unique id from array implode when passing value through multiple selection php? When I pass single data, I can get the id; while when I pass multiple data it won't shown any id. I have some ideas, is it the problem when select…
-3
votes
1 answer

sending post data using fopen or curl?

How can I send POST data using fopen() or cURL?
xtremekid
  • 9
  • 1
1 2 3
12
13