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.

learn more… | top users | synonyms

0
votes
0answers
3 views

like button - post to facebook button doesn´t work

I´ve implemented the LIKE BUTTON on my webpage using the XFBML version of the button. I´ve added the javascript SDK right after the tag with the right ID, and channel attributes. I´ve also inserted ...
1
vote
1answer
41 views

How do I convert a json array into an array php can read?

Answer Thanks to Kenneth's answer and suggestions, I did figure out what I needed to do. There's an added layer because this is an ExpressionEngine site, but basically I needed to tell the function ...
0
votes
1answer
38 views

how to redirect from a form to different page?

I would like to add a form in my page. When I click on the submit button it post some details. <form action="http://toggletime.net/redirect.php" method="get"> <input type="text" name="url" ...
0
votes
1answer
9 views

How to store array in usermeta in wordpress

I have a custom form and am trying to store multiple values in the usermeta. This is a sample code I am using, however it just stores the last option selected (i.e. if I select from Volvo to Opel, it ...
-1
votes
1answer
32 views

not recieving POST method

I have a post method in a form on one page, and a test on the second. The test is not receiving my POST. Form: <div class="widget"> <h2>Log in / Register</h2> <div ...
-1
votes
0answers
4 views

Wavemaker RESTful web services post data

I am trying to create a simple page to send an api post and create a new account. I have managed to do most of it using the REST(build a service) however I am not sure how to send the postdata. I ...
0
votes
0answers
9 views

Windows Phone 8 -Post Json 'in request body' give an exception

Windows Phone 8 -Post Json 'in request body' give an exception but, it is working on 'windows Console app'. Why could it be? Exception: AsyncWaitHandle ...
0
votes
1answer
30 views

Using the global variable POST in PHP to receive a java script variable

Im a high school student and im trying to finish up my final project for my webdesign class. Ive run into a problem with the global array "POST" in PHP. Some background info: I have a HTML 5 canvas ...
3
votes
2answers
52 views

post value of hidden textboxes

i have this code: <?php $result = mysqli_query($con,"SELECT * FROM table"); while($row = mysqli_fetch_array($result)){ echo "<input type=\"checkbox\" id=\"$row[use_id]\" name=\"things[]\" ...
0
votes
0answers
8 views

Search results with pagination lost $_POST variable on next page, trying to include variable in URL

Although there are a lot of same topics around web and on stackoverflow forum, the solutions given are not what I am looking for, as most of them suggest to use SESSION. What I am looking for is to ...
0
votes
2answers
23 views

How to rewrite function used POST metod to use also GET method in LoadRunner?

For POST method I have this piece of code in LR (it is working): web_custom_request(transname, URL, "Method=POST", "TargetFrame=", "Mode=HTML", "Resource=0", "Referer=", EncodingType, ...
-1
votes
1answer
14 views

Wordpress - best way to add many informations to a single post

I would like to know what is the best process to attach to a single post plenty of informations. This will allow me to create inside the single post template some dynamic tab contents like here: ...
0
votes
1answer
22 views

posting serialized data with jquery ajax in IE6 not working

when i post some data with jquery ajax command in ie6 and i print_r($_POST) php print an empty array.. i can alert this data with alert function in ie by adding this line of code: ...
-1
votes
0answers
11 views

WP: convert custom post template for old post [closed]

I use Custom Post Template plugin for this functions. I have a blog with over 2000 post and I would like to bulk change the post template for old posts. How to do it? Thx.
2
votes
1answer
56 views

Login to page with curl in php and then visit link “logged in”

I need to login (make post) with curl in php to a website, then save a cookie with authentication, and use it to visit normal link from same website. They have only half of text available in free ...
0
votes
1answer
21 views

Post request to server. Different responses with different defaultClients

When i try to send post request using Java (JVM on Mac) with correct credentials I got correct response code 302 FOUND. But when using the same code on the android, with SAME correct params, i got ...
0
votes
3answers
35 views

Unable to fetch data from textfield using $_POST

I have been not able to fetch data from the textfield 'current_reading'. What can be the issue? every other text and $_POST method are working fine index page ...
0
votes
0answers
37 views

Merge form fields into one using javascript

I'm a non-programming designer trying to help out a friend and could use a little help with javascript. I have a form which will populate a shopping cart. That form has multiple fields (text fields, ...
0
votes
2answers
30 views

Dynamically added form elements are posted to PHP but cannot access them

I'm posting dynamically added form elements to PHP via AJAX. I can see that the serialised form data is posted to the php, but when I try to access the data within it, some of the fields come up ...
3
votes
0answers
19 views

How to return error before exceeding post_max_size [duplicate]

How is it possible to throw an error before exceeding post_max_size which will return a fatal error? If php returns a fatal error the whole application will fail and thats not very desirable
-4
votes
0answers
43 views

PERL - Failing to send a POST Request to register a new account

I am coding a perl script to register a new account in my website. I used livehttpheaders to sniff the post request sent upon making a new account here is the data i sniffed. ...
0
votes
2answers
45 views

Post a form in jQuery when this form is loaded in AJAX with jQuery

I want to post a form using jQuery.post : JS function: function post_ajax_form2(url,formId,message){ bsendMessage = 0; if (typeof message !== 'undefined') { bsendMessage = 1;} var data = ...
0
votes
0answers
9 views

Android - Facebook API : post image

I'm building an app that allows Facebook users to create new events. I noticed that I can't create an event and add an image to it in a unique Graph API call. So I make another call to post the image: ...
0
votes
0answers
23 views

ajax post response statusCode function not invoked

im using this ajax method for some reason the status code that return from the server after submit is ignored.. this is what im reciving from the server in the response HTTP/1.1 200 OK ...
0
votes
0answers
26 views

How can I save multi entity with Jquery in MVC

I have a schools and school's teachers. You can see theachars the Dropdownlist. After dropdownlist had chancged, came theachers of selected school. I Write this section in Jquery. ...
0
votes
1answer
33 views

Flattening an array in Flask API

I'm making an API with flask that takes as a POST message body a nested array, and then returns a list of the values. An example would be curl …. –d ”(([[1, [], [2, 3]], [[4]], 5])” would return ...
0
votes
1answer
42 views

page reload and send post to himself

I have a php page that have $id=$_GET['id']; I want to make a select box that when you click on some option will reload the page (with the GET + a new value number in post). I did that: function ...
0
votes
0answers
29 views

Submitting form with field on hidden page

The issue I have has been discuss on the DataTable forum but the solution does not work in my hands (http://datatables.net/forums/discussion/185/submitting-forms-with-fields-on-hidden-pages/p1). ...
0
votes
2answers
85 views

Post Form using C#

I need to post data to other website using C#. <form action="http://localhost:2180/PrepDoc.aspx" method="post" target="my_frame" > <input type="text" name="someText" value="Some Text" ...
0
votes
0answers
7 views

Powershell Invoke-RestMethod POST Method timeout issue

I'm trying to write a program that deletes files from a specific device. The device has a REST API and I can access it from the CLI without any problems. For example if I write this in the CLI, it ...
0
votes
0answers
19 views

Getting in PHP a javascript encodeURIComponent POSTed data

I am writing a PHP-javascript-AJAX based application which sends a form in AJAX as a synchronous request using POST method to a php script. I used encodeURIComponent() function in javascript on each ...
-2
votes
3answers
43 views

How to catch a response in a “POST” request? [closed]

I have an html/jQuery webPage and a PHP server. From the webPage i am making a "post" request to my server like this : var data = '{"deviceUUID":"' + userId + '"}' $.ajax({ ...
1
vote
0answers
27 views

XMLHttpRequest GET Server Status is 200 but POST Server Status is 500

I am writing a function in Javascript to post JSON data using the XMLHttpRequest POST method. The following code works fine for GET: function httpGet(myurl, cb){ var xmlhttp = new ...
0
votes
3answers
48 views

PHP - Securely sending request/response between 2 servers?

Summary: I've created an app in PHP. It's lead management system for a call center. I now need to allow a partner to be able to add new leads to the app by integrating our app with their proprietary ...
0
votes
1answer
9 views

How to use JMeter to test encoding in HTTP Request? Burp Suite?

I have to develop a security testing framework to make sure all output in our application is encoded. I have many post & get http requests Each request may have 1 or many parameters What I ...
0
votes
2answers
35 views

Send data from large form by AJAX

I have a form with 30 field: 3 field which are 10 times repeated. This is my code: <form id="artikelform" method="POST" name="controleartikelen" action=""> <table id="controle"> ...
0
votes
1answer
79 views

Input type=text not passing values with some values

I am having a problem using an html/php app. I have a form with an input type="text" name="email" tag. In this tag, if I submit my e-mail xxxxxxx@xxxx.com I get the value with no problems at ...
-1
votes
1answer
42 views

Explaining an HTTP “GET” request

I have many times successfully implemented HTTP "POST" requests in my projects, more importantly because i could understand how the request worked in my code. Now i need to make a "GET" request , but ...
0
votes
0answers
13 views

Is there possible to add space break in facebook post

As the topic, is there any option to add space brake in facebook post, such as: &nbsp; (this is not working) or something else?
0
votes
4answers
27 views

post not completely posted PHP

I have a select value 'post', when someone wants to change the status of the post from unsolved to solved they have to choose a post en than click 'change to solved' The problem is when I click on ...
0
votes
3answers
45 views

Allow to send Javascript Code with Method Post in PHP

I have a problem submitting a form from my app. I need to send some JavaScript code from a form to a controller page. The code in html is like: <form method="post" ...
0
votes
1answer
9 views

FormHttpMessageConverter filename from byte array

I'm trying to upload file with POST request. POST must be of the enclosure-type multipart/form-data. I insert file as byte array: MultiValueMap<String, Object> requestParameters = new ...
1
vote
1answer
26 views

Exact synatx of Datetime field in POST

I am trying to send date_time from jQuery post to our server we are using mongoDB as backend and using django_tastypie_mongoengine for posting so far i have tried putting date="2010-11-10T03:07:43" ...
-2
votes
1answer
29 views

confusion with jquery , ajax post

I have a simple html page , and by using jquery/ajax , i am trying to send a simple json file to my php server.The behavior of my script though is really confusing.. First of all i tried , what i ...
0
votes
1answer
51 views

Rails Form Image_Tag VS File_Field_tag

I'm making a profile picture the user can either get it from Linkedin or upload it's own. When the user get's it from LinkedIn it's shown via an image_tag: image_tag(Base64::decode64(field_value), ...
3
votes
1answer
45 views

HTML in Google App Engine

I have been following this example from google's site, an I am having some trouble understanding some of how the underlying things work. Mostly, When you submit text, in the MainHandler HTML, how does ...
0
votes
6answers
80 views

Is this a good way to sanatize php $_POST inputs? [duplicate]

I have been using this code on my website for a long time, and just want to make sure I am correctly sanatizing my PHP $_POST inputs... foreach($_POST as $key=>$val) //this code will sanitize your ...
0
votes
0answers
21 views

Dynnamically added datepickers and maintaning state after post

I am adding datepickers in kohana view with jquery code like this: $("#add_date").click(function() { var pickerCounter = parseInt($("#pickerCounter").val()) + 1; ...
0
votes
3answers
26 views

php form submission not working

I have multiple pages that I have made using this exact same method, but for some reason, no matter what I've tried, I can't get certain fields to transfer into the email fields. I get absolutely no ...
0
votes
1answer
29 views

Why use PUT methods? [duplicate]

There does not seem to be any advantage over using POST. Is there a specific scenario where PUT works better/ faster/ more securely/ something else? Why would anyone code for a whole new http method ...

1 2 3 4 5 222