active questions tagged post - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:33:28Z http://stackoverflow.com/feeds/tag/post http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/813487/how-to-post-json-to-php-with-curl 1 How to post JSON to PHP with curl Peter Turner 2009-05-01T22:03:20Z 2009-12-03T00:36:42Z <p>I may be way off base, but I've been trying all afternoon to run <a href="http://www.recessframework.org/page/restful-php-framework" rel="nofollow">the curl post command</a> in this recess PHP framework tutorial. What I don't understand is how is PHP supposed to interpret my POST, it always comes up as an empty array. </p> <pre><code>curl -i -X POST -d '{"screencast":{"subject":"tools"}}' \ http://localhost:3570/index.php/trainingServer/screencast.json </code></pre> <p>(The slash in there is just to make me not look like an idiot, but I executed this from windows using PHP 5.2, also tried on a Linux server, same version with Linux curl) </p> <p>There must be something I'm missing because it seems pretty straightforward, the post just isn't be interpreted right, if it was, everything would work great. </p> <p>This is what I get back:</p> <pre> HTTP/1.1 409 Conflict Date: Fri, 01 May 2009 22:03:00 GMT Server: Apache/2.2.8 (Win32) PHP/5.2.6 X-Powered-By: PHP/5.2.6 Transfer-Encoding: chunked Content-Type: text/html; charset=iso-8859-1 {"screencast":{"id":null,"subject":null,"body":null, "dataUrl":null,"dataMedium":null,"createdOn":null,"author":null}} </pre> http://stackoverflow.com/questions/1829407/net-http-and-posting-data-to-google-checkout 0 net/http and posting data to Google Checkout Kevin 2009-12-01T22:32:26Z 2009-12-02T23:59:56Z <p>I'm trying to post form data to Google Checkout using the following code:</p> <pre><code>x = Net::HTTP.post_form(URI.parse('https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/[merchant_number_here]'), @params) </code></pre> <p>When I attempt to submit using this line, I get the following error:</p> <p><strong>Errno::ECONNRESET in PaymentsController#create<br /> Connection reset by peer</strong></p> <p>Any thoughts on what could be going wrong?</p> http://stackoverflow.com/questions/1827261/interrupting-post-request 0 Interrupting POST request Alex Ustinov 2009-12-01T16:23:19Z 2009-12-02T19:55:33Z <p>I'm working on ASP.NET file uploader and currently trying to resolve the following issue: Assume at some moment the server side HttpModule decides that incoming data stream is too long and must be aborted. So the code that would handle this situation at first glance would be very simple. Like this:</p> <pre><code>try { ... if (size &gt;= maxSize) throw new InvalidOperationException("File is too large!"); } catch (InvalidOperationException e) { HttpContext.Current.Response.Write(e.Message); HttpContext.Current.Response.End(); return; } </code></pre> <p>But unfortunately this does not work. Seems browser has not received the response and continues transferring data to server. Does anybody know why this does not work and how would be workaround?</p> http://stackoverflow.com/questions/1832196/how-do-we-pass-parameters-when-doing-http-post 0 How do we pass parameters when doing HTTP Post? Rohit Roy 2009-12-02T10:59:33Z 2009-12-02T17:56:23Z <p>I am working on an app where we have to pass specific web api parameters to a web app using HTTP POST. eg: apimethod name parameter1 value parameter2 value So do I use a string or URLEncodedPostData to send that data? It would be good if u help me with a code eg. I am using something like this but it doesnt post the data to the server. Though the response code is ok/200 and I also get get a parsed html response when i read the httpresponse input stream. But the code doesnt post anything. So unable to get the expected response.</p> <pre><code> _postData.append("method", "session.getToken"); _postData.append( "developerKey", "value"); _postData.append( "clientID", "value"); _httpConnection = (HttpConnection) Connector.open(URL, Connector.READ_WRITE); String encodedData = _postData.toString(); _httpConnection.setRequestMethod(HttpConnection.POST); _httpConnection.setRequestProperty("User-Agent", "BlackBerry/3.2.1"); _httpConnection.setRequestProperty("Content-Language", "en-US"); _httpConnection.setRequestProperty("Content-Type","application/x-www-form-urlencoded"); _httpConnection.setRequestProperty("Content-Length",(new Integer(encodedData.length())).toString()); os = _httpConnection.openOutputStream(); os.write(requeststring.getBytes());` </code></pre> http://stackoverflow.com/questions/1833753/help-to-convert-this-php-code-to-vb-net-code 0 Help to convert this PHP code to VB.NET code yae 2009-12-02T15:46:52Z 2009-12-02T17:38:01Z <p>Hi</p> <p>I have a code to send XML via POST. But this code is in PHP and I need it in VB.NET.</p> <p>Any help to convert this code?</p> <pre><code>$XMLFile= (here i have created the xml file. XML is encoded ISO-8859) $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"URL WHERE I SEND XML"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); curl_setopt($ch, CURLOPT_POSTFIELDS,"XMLDATA=".$XMLFile); $results=curl_exec ($ch); curl_close ($ch); $results=stripslashes($results); $xmlreturned=new SimpleXMLElement($results); if($xmlreturned-&gt;NotificationResultHeader-&gt;RRC==0){ if($xmlreturned-&gt;NotificationResultList-&gt;NotificationResult-&gt;NRC==0){ echo "OK. SUCCES"; </code></pre> <p>And how I convert this PHP code too:</p> <pre><code>$msg=htmlentities($msg); $msg=urlencode($msg); </code></pre> http://stackoverflow.com/questions/1830533/how-to-call-a-servlet-from-a-jquerys-ajax-function 0 How to call a servlet from a jQuery's $.ajax() function Ankur 2009-12-02T03:46:00Z 2009-12-02T14:44:55Z <p>I am trying to call a servlet from jQuery's .ajax() function.</p> <p>At the moment I don't think I am even calling the servlet or passing paramaters to it, however lots of Googling doesn't seem to have helped. Any ideas?</p> <p>This is my html:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt; &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; function login(){ </code></pre> <p>$("#loading").hide();</p> <p>var email = document.nameForm.email.value;<br> $.ajax({<br> type: "GET",<br> url: "ProcessForm",<br> data: "email="+email,<br> success: function(result){<br> alert(result); }<br> });<br> }<br> My AJAX <p>This time it's gonna work</p> Email loading</p> <pre><code>&lt;/body&gt; &lt;/html&gt; </code></pre> <p>And my web.xml</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"&gt; &lt;display-name&gt;ajaxtry&lt;/display-name&gt; &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; &lt;welcome-file&gt;default.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;default.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;servlet&gt; &lt;servlet-name&gt;ProcessForm&lt;/servlet-name&gt; &lt;servlet-class&gt;com.ajaxtry.web.ProcesFormServlet&lt;/servlet-class&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;ProcessForm&lt;/servlet-name&gt; &lt;url-pattern&gt;/ProcessForm&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; &lt;/web-app&gt; </code></pre> <p>The servlet is just a template at the moment:</p> <pre><code>package com.ajaxtry.web; // imports here public class ProcessFormServlet { </code></pre> <p>public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {</p> <p>response.setContentType("text/html"); PrintWriter out = response.getWriter();</p> <p>System.out.println(request.getParameter("email")); } }</p> http://stackoverflow.com/questions/1820345/perform-http-post-from-within-excel-and-parse-results 0 Perform HTTP Post from within Excel and Parse Results Scott 2009-11-30T15:03:46Z 2009-12-02T14:03:14Z <p>I have access to an API. The API takes an XML post as input and then returns an XML response with the relevant data.</p> <p>I want to </p> <ol> <li>Send the HTTP Post to the Server (Authentication and Request will be sent together)</li> <li>Receive the response (One of the options to be returned is CSV or XML)</li> <li>Insert the data into the appropriate rows and columns and then perform data analysis using pivot tables. </li> </ol> <p>I don't have a programming background in excel but am comfortable with different web scripting languages, HTML, CSS, Javascript etc.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1832506/php-associative-array-and-switch 0 php associative array and switch Newb 2009-12-02T12:03:27Z 2009-12-02T12:32:17Z <p>My associative array.</p> <pre><code>$money = array("Nickels" =&gt; $_POST["nickels"], "Dimes" =&gt; $_POST["dimes"], "Quarters" =&gt;$_POST["quarters"]); </code></pre> <p>My html form set up to handle Quarters, Dimes and Nickels are not shown in this case for brevity.</p> <pre><code>&lt;label&gt;&lt;b&gt;Quarters:&lt;/b&gt;&lt;/label&gt; &lt;select name="quarters" &gt; &lt;option value=".25"&gt;25c&lt;/option&gt; &lt;option value=".50"&gt;50c&lt;/option&gt; &lt;option value=".75"&gt;75c&lt;/option&gt; &lt;option value="1"&gt;$1.00&lt;/option&gt; &lt;/select&gt; </code></pre> <p>A user can only select either Quarters only, Dimes only, or Nickels only. If a user selects Quarters with the option value of .25, this value will be sent to the php script.</p> <p>So I was just wondering for calculations based on the fact that the user can select Quarters only with one value, Dimes only with one value, and Nickels only with one value, and not a combination of denominations,</p> <p>how would one go about setting up different test cases, for example if the user selects <code>$money["Quarters"];</code> // With different values coming from the html form as .25, .50,.75, or 1, and only one of the selected values will make it through to the php script depending on what the user selected.</p> <p>Can I do this:</p> <pre><code>switch($selection) { case “Quarters”: echo “ You chose $money[‘Quarters’]; .&lt;br /&gt;”; break; case “Nickels”: echo “You chose $money[‘Nickels’]; .&lt;br /&gt;”; break; case “Dimes”: echo “You chose $money[‘Dimes’]; . &lt;br /&gt;”; break; default: print “Please select a Denomination”; } </code></pre> <p>Thank you for not flaming the newb, I am still learning, and sorry for the mix and match in terms of <code>"</code> and <code>“</code>.</p> http://stackoverflow.com/questions/1829391/programmatically-access-post-a-form-that-requires-session 0 Programmatically access & post a form that requires session Andrew 2009-12-01T22:29:28Z 2009-12-02T10:53:19Z <p>Hello:</p> <p>I am attempting to use PHP and cURL to:</p> <ol> <li>Access a web-form &amp; maintain session</li> <li>Post the data to that form with session in place</li> </ol> <p>In my head, I see it as two separate functions, one to get the form (initiate session) and another to post the data.</p> http://stackoverflow.com/questions/1579823/java-buffered-reader-http-post 0 JAVA Buffered Reader HTTP POST unknown (google) 2009-10-16T19:03:52Z 2009-12-02T04:58:11Z <p>Hello,</p> <p>Looking for a bit of help, I have currently written a HTTP server. It currently handles GET requests fine. However, whilst using POST the buffered reader seems to hang. When the request is stopped the rest of the input stream is read via the buffered reader. I have found a few things on google. I have tried changing the CRLF and the protocol version from 1.1 to 1.0 (browsers automatically make requests as 1.1) Any ideas or help would be appreciated. Thanks</p> http://stackoverflow.com/questions/1830130/resume-uploads-using-http 0 resume uploads using HTTP? noear 2009-12-02T01:29:17Z 2009-12-02T03:04:43Z <p>Is it possible to resume interrupted uploads using HTTP Post? I am working on a project that uploads several files to a HTTP server. Thanks.</p> http://stackoverflow.com/questions/1827837/why-do-i-get-a-curleurlmalformat-when-trying-to-http-post 0 Why do I get a CURLE_URL_MALFORMAT when trying to http post? Nick Bolton 2009-12-01T18:00:39Z 2009-12-01T19:41:45Z <p>Here's the code (extracted from an existing application):</p> <pre><code>CURL *curl = curl_easy_init(); _ASSERTE(curl); string url = "http://127.0.0.1:8000/"; char *data = "mode=test"; curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data); curl_easy_setopt(curl, CURLOPT_URL, url); CURLcode res = curl_easy_perform(curl); bool success = (res == CURLE_OK); curl_easy_cleanup(curl); </code></pre> <p>The value of <code>res</code> is <code>CURLE_URL_MALFORMAT</code>. Is this URL not compatible with curl?</p> http://stackoverflow.com/questions/1823542/how-to-send-a-http-post-request-in-delphi-using-wininet-api 2 How to send a HTTP POST Request in Delphi using WinInet api. Sebastian 2009-12-01T01:49:57Z 2009-12-01T19:08:49Z <p>Hello, I am trying to make HTTP Requests from Delphi using the WinInet functions.</p> <p>So far I have:</p> <pre><code>function request:string; var hNet,hURL,hRequest: HINTERNET; begin hNet := InternetOpen(PChar('User Agent'),INTERNET_OPEN_TYPE_PRECONFIG or INTERNET_OPEN_TYPE_PRECONFIG, nil, nil, 0); if Assigned(hNet) then begin try hURL := InternetConnect(hNet,PChar('http://example.com'),INTERNET_DEFAULT_HTTP_PORT,nil,nil,INTERNET_SERVICE_HTTP,0,DWORD(0)); if(hURL&lt;&gt;nil) then hRequest := HttpOpenRequest(hURL, 'POST', PChar('param=value'),'HTTP/1.0',PChar(''), nil, INTERNET_FLAG_RELOAD or INTERNET_FLAG_PRAGMA_NOCACHE,0); if(hRequest&lt;&gt;nil) then HttpSendRequest(hRequest, nil, 0, nil, 0); InternetCloseHandle(hNet); except on E : Exception do ShowMessage(E.ClassName+' error raised, with message : '+E.Message); end; end end; </code></pre> <p>But this doesn't do anything (I am sniffing network http traffic to see if it works). I have successfully used InternetOpenURL but I also need to send POST request and that function doesn't do that.</p> <p>Could someone show me a simple example? The result I want is to get the http response page in a var as string.</p> http://stackoverflow.com/questions/1183466/new-line-problem-when-doing-ajax-post-with-jquery 3 New Line problem when doing Ajax Post with JQuery sezgin 2009-07-26T00:59:16Z 2009-12-01T10:18:50Z <p>Hello, I'm trying to use Ajax with JQuery, what I want to do is just send multiline textbox value to php with Ajax.</p> <p>I'm using that code, it sends txtAnswer value to php, unfortunately, it removes new lines (\n) from data. How can I solve this problem... Thanks in advance..</p> <pre><code> $.post( 'post-answer.php', {answer: $("#txtAnswer").val(), qid: &lt;?=$question_ID?&gt;}, function(ajaxResponse){ $('#answers').html(ajaxResponse) } ); </code></pre> http://stackoverflow.com/questions/1825110/the-values-of-a-form-can-not-be-passed-on-to-the-action-file-or-the-action-file-c 0 The values of a form can not be passed on to the action file or the action file can not get the values of the fields in the form Steven 2009-12-01T09:45:34Z 2009-12-01T09:59:15Z <p>This is the PHP code:</p> <pre><code>$html=&lt;&lt;&lt;eod &lt;div&gt;Your current account balance is &lt;span style="color:red"&gt;$$balance&lt;/span&gt;&lt;/div&gt;&lt;br/&gt; &lt;form id="digitalchange" action="digitalchange.php?" action="post"&gt; &lt;input type="hidden" name="tid" value=$announcementid /&gt; &lt;table rules=all FRAME=BOX&gt;&lt;tr&gt;&lt;td&gt;Balance:&lt;span class="price"&gt;$balance&lt;/span&gt;&lt;/td&gt;&lt;td&gt;Current Shortfall:$shortfall&lt;/td&gt; &lt;td&gt;Unit Price:&lt;span class="price"&gt;$$unitprice&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Add Balance:$&lt;input type="text" id="addbalance" name="addbalance" size="5" /&gt;&lt;/td&gt; &lt;td&gt;Add Shortall:&lt;input type="text" id="addquota" name="addquota" size="4" /&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;Reduce Shortfall:&lt;input type="text" id="reducequota" name="reducequota" size="4" /&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; Please click Confirm only once. &lt;input type="submit" value="Confirm" /&gt;&lt;/form&gt; &lt;hr&gt; eod; echo $html; </code></pre> <p>Below are the first two lines in digitalchange.php:</p> <pre><code>$addbalance=$_POST['addbalance']; echo "What is wrong".$addblance; </code></pre> <p>Outputs:</p> <blockquote> <p>What is wrong</p> </blockquote> <p>digitalchange.php simply can not get the value of addbalance,I tried $_REQUEST, but still failed. The inputbox of addbalance is not empty. But it seems that the values of the form of digitalchange can not be passed on to digitalchange.php. What's wrong?</p> http://stackoverflow.com/questions/1824601/how-to-get-post-data-as-array-with-c 0 How to get POST data as array with C# Kahn 2009-12-01T07:42:09Z 2009-12-01T09:04:09Z <p>I'm developing an ASP.Net handler with C# that receives an array of data posted from an external Flash program. How can I use the data as array? It seems the HTTP Context used in ASP.Net automatically html-decodes the post data so that it comes out as a simple string. The separator in this case is comma (could be it's always a comma, never worked with this before).</p> <p>Seems I need either of two things:</p> <p>1) A way to get to the data in its html-encoded form, where the comma used as a separator for the arrays can ONLY represent real arrays instead of customer form input (the customer input comma would remain encoded at this point).</p> <p>2) A way to simulate the PHP print_r(), var_dump() function (don't know PHP myself, but I'm told that does the trick there) to dump the variable into an array.</p> <p>So any help on how to do either would be appreciated. Thanks in advance!</p> <p><b>Edit 1:</b> The data being posted can be for example a bunch of addresses, postalcodes and optional extra infos. Such as <b>"address=testroad%5F5,another%5Ftestroad%5F6&amp;postalcode=12345,56789&amp;extrainfos=,firstwasempty"</b>. In that example, there were two addresses (%5F equals whitespace), two postalcodes, but only the second address contained extrainfo as the space before the comma was empty. Now once more, as English isn't my mothertongue, the problem was that possible customer-written comma gets mixed with the actual array-splitting comma after decoding.</p> http://stackoverflow.com/questions/1823846/what-do-i-need-in-order-to-save-binary-file-post 0 What do I need in order to save binary file post? YEH 2009-12-01T03:41:26Z 2009-12-01T03:41:26Z <p>Hi,</p> <p>I have a client program that uploads files to the server. Initially I used POST method and have mod_python to save a uploaded file. Then, I found that a file might contain some special character so by the time my function is called, some of data have been cut off because I think that Apache is parsing data that I am POSTing. Thus, it needs to url-encode if I want to keep the same way. However, I feel that it is too much overhead to url-encode the entire file. To this end, I wrote a sample program to post a file as binary but I am not sure what I need for server part. Could anyone help me to figure out what needs to be done? I am assuming that this must be something similar to posting image file but I just do not know what I need. Please help. Thanks.</p> <p>YEH</p> http://stackoverflow.com/questions/1817602/does-jquery-post-or-ui-dialog-have-a-please-wait-icon-option 0 does jquery .post or ui dialog have a "please wait . ." icon option? oo 2009-11-30T02:33:04Z 2009-11-30T03:43:11Z <p>when i click on a link, i have a jquery .post call in a javascript function. This calls a controller action which returns a partialresult into a jquery ui dialog.</p> <p>this process can take a few seconds as the controller calls the model for some calculations, etc . .</p> <p>anyway, is there anyway to display a "Please wait . ." or animated icon from the time after the link is clicked up until the dialog is displayed ?</p> http://stackoverflow.com/questions/1423209/post-file-using-rubys-http-class 0 Post file using ruby's Http class rmbarnes 2009-09-14T18:34:30Z 2009-11-30T02:00:03Z <p>I have been learning to fake posting forms using Ruby's Http class, but now I need to post a file (as in faking a form submission where one of the fields is input type="file"). Anyone know how to do this?</p> <p>NB It's not essential I use the Http class, just that I can post files.</p> http://stackoverflow.com/questions/1815911/why-the-jmeter-not-work 1 why the jmeter not work ? MemoryLeak 2009-11-29T16:07:47Z 2009-11-29T20:31:52Z <p>I use jmeter to record the requests and then perform a performance test. after i records all the requests with proxy server. and these requests contain post form. after that I run the test cases, but I found the post form not work, it can not create a record in website's database automatically. but before that i used webload, everything is oKK What's the problem ?What can i do for this ?</p> http://stackoverflow.com/questions/1802093/url-requests-adding-post-data-to-querystring 0 URL requests adding POST data to querystring Serge Meunier 2009-11-26T07:33:19Z 2009-11-29T19:08:56Z <p>I am using ExtJS to send an Ajax request to a PHP page on a server, wanting to send the parameters as POST variables rather than in the querystring.</p> <p>I have included a random token in the querystring since we were having caching issues on one of our proxy servers.</p> <pre><code>Ext.Ajax.request({ url: 'ajax.php?action=test&amp;randToken=' + generateRandomToken(), scope: this, method: 'POST', success: ajaxSuccess, failure: ajaxFailure, params: { param1: 'test', param2: 'data', }}); </code></pre> <p>The code above works when I run it locally (on a Vista box), and checking the traffic using Fiddler everything appears fine. </p> <p>When running on our Ubuntu staging server (running Zend server) however, all the ajax requests put the POST data into the querystring as well. </p> <p>I do not even know where to begin looking for what is causing this. Is it a proxy or something on the network, or maybe a setting on the staging server?</p> http://stackoverflow.com/questions/716216/how-to-create-a-form-in-sharepoint-that-modifies-query-string 0 How to create a form in SharePoint that modifies query string Karim 2009-04-04T00:58:04Z 2009-11-29T14:00:03Z <p>My request is simple.</p> <p>i want to put a form (a text field let's say) on a sharepoint page, with a submit button.</p> <p>when i submit. I want the URL to be reposted with the s="textfromtextfield" </p> <p>say i was on a url <a href="http://site/site.aspx?p=x" rel="nofollow">http://site/site.aspx?p=x</a></p> <p>clicking submit will take me to:</p> <p><a href="http://site/site.aspx?p=x&amp;s=" rel="nofollow">http://site/site.aspx?p=x&amp;s=</a>"textfromtextfield"</p> http://stackoverflow.com/questions/1814544/how-can-i-do-a-sort-and-search-using-both-get-and-post-variables 0 How can I do a sort and search using both GET and POST variables? Chris 2009-11-29T03:24:44Z 2009-11-29T06:06:07Z <p>I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example:</p> <pre><code>&lt;a href=" &lt;?php // Sorts by order id. If already sorted by order id, then it will change the link to sort descending if(!isset($_GET['sortby']) || $_GET['sortby'] != 'order_id'){ echo $_SERVER['SCRIPT_NAME'] . '?sortby=order_id'; //example: tracker.php?sortby=order_id } elseif(isset($_GET['sortby']) || $_GET['sortby'] == 'order_id'){ echo $_SERVER['SCRIPT_NAME'] . '?sortby=order_id_desc'; //example: tracker.php?sortby=order_id_desc }?&gt; "&gt;Order ID&lt;/a&gt; </code></pre> <p>I also have a form where users can enter pick a category from a selectbox and then enter a searchterm. I am using if statements and switch statements to check if the $_GET['sortby'] variable and the $_POST['search_submit'] variable is set and if so, to run a certain sql statement based on the value of the GET variable.</p> <p>There are 4 different scenarios. </p> <p><strong>1. Default: If neither sort nor search is set</strong>. This one works fine:</p> <pre><code>if(!isset($_GET['sortby']) &amp;&amp; !isset($_POST['search_submit'])){ //Default, If no sort or search is set $sql = 'SELECT * FROM orders ORDER BY order_id DESC'; } </code></pre> <p><strong>2. If the search is set but the sort is not</strong>. This one works fine:</p> <pre><code>if(isset($_POST['search_submit'])) { $search_string = ' WHERE ' . $_POST['searchby'] . '= "' . $_POST['search_input'] . '" '; } if(!isset($_GET['sortby']) &amp;&amp; isset($_POST['search_submit']) ){ //If the search is set but no sort $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id DESC"; } </code></pre> <p><strong>3. If the sort is set, but the search is not</strong>. This one works fine:</p> <pre><code>if(isset($_GET['sortby']) &amp;&amp; !isset($_POST['search_submit'])) { //If the sort is set but no search switch ($_GET['sortby']) { case "order_id": $sql = "SELECT * FROM orders ORDER BY order_id ASC"; break; case "order_id_desc": $sql = "SELECT * FROM orders ORDER BY order_id DESC"; break; } } </code></pre> <p><strong>4. If the search AND sort is set.</strong> All 3 of the above if statements work, but the last one is giving me problems.</p> <pre><code>if(isset($_GET['sortby']) &amp;&amp; isset($_POST['search_submit'])) { //If the sort AND search is set switch ($_GET['sortby']) { case "order_id": $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id ASC"; break; case "order_id_desc": $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id DESC"; break; } } </code></pre> <p>What happens is that you can search, but as soon as you click on one of the column headers and it reloads the page with the new GET variable, it will get rid of the current POST variable, thereby showing all results again. I tried to load the current POST variable into a session after the $_POST['search_submit'] isset and then make the last if statement check to see if the session variable is set, but what happens then is that the session is always set and if i try to go back to the homepage, it will keep those search results. </p> <p>Perhaps I need to destroy the session somewhere? Perhaps there is an overall better approach I could be taking to combining sort and search features? </p> http://stackoverflow.com/questions/1809658/escaping-user-data-without-magic-quotes 2 Escaping user data, without magic quotes Dan Peddle 2009-11-27T16:33:09Z 2009-11-27T16:55:50Z <p>Hey,</p> <p>I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.</p> <p>Obviously, with the magic quotes directive being deprecated shortly in php 5.3.0+, and removed in php6, this becomes more pressing, for anyone looking to upgrade and get into the new language features, while maintaining legacy code (don't we love it..).</p> <p>However, one thing that I haven't seen is much discussion about theory/best practice with what to do once you have protected your data - for example, to store with or without slashes? I personally think keeping escaped data in the DB is a bad move, but want to hear discussion and read some case studies preferably.. </p> <p>Some links from the PHP manual just for reference:</p> <p><a href="http://php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">PHP Manual - <code>mysql_real_escape_string</code></a></p> <p><a href="http://php.net/manual/en/function.htmlspecialchars.php" rel="nofollow">PHP Manual - <code>htmlspecialchars</code></a></p> <p>etc etc.</p> <p>Any tips?</p> http://stackoverflow.com/questions/1809494/post-the-checkboxes-that-are-unchecked 0 Post the checkboxes that are unchecked reach4thelasers 2009-11-27T15:56:29Z 2009-11-27T16:31:23Z <p>I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes that are NOT checked in a form post, rather than the ones that are checked?</p> http://stackoverflow.com/questions/1807415/sending-xml-file-from-iphone-to-a-server-using-post-method 0 sending XML file from IPhone to a server using Post Method Ansh 2009-11-27T08:28:23Z 2009-11-27T08:40:24Z <p>I am trying to send the data to server from my Iphone client. It works fine for most values but when itry to send a string like "IPhone+Cocoa" the server shows the string as "IPhone Cocoa". I have tried to google it but without success is there any why of doing it.</p> <p>Here is my code</p> <p>-(void)sendRequest:(NSString *)aRequest {</p> <pre><code> NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:kURLRequest]]; NSString *httpBody = [NSString stringWithFormat:@"%@=%@",[requestString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],[aRequest stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSData *aData = [httpBody dataUsingEncoding:NSUTF8StringEncoding]; [request setHTTPBody:aData]; [request setHTTPMethod:@"POST"]; self.feedURLConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self]; </code></pre> <p>} Can anyone help me.</p> http://stackoverflow.com/questions/1359240/php-get-and-post-undefined-problem 0 PHP $_GET and $_POST undefined problem Hooray Jay 2009-08-31T20:23:31Z 2009-11-27T08:36:41Z <p>I'm new to PHP so I apologize if this is a simple problem...</p> <p>I am moving a PHP site from one server to another. The new server is IIS 7.0, PHP 5.2.1, with short open tag turned "On", and I don't know how the original server was set-up (I was just given the code).</p> <p>The following is the very first section of code on one of the pages:</p> <pre><code>&lt;? ob_start(); session_start(); if($_GET['confirm'] == 13 || $_GET['confirm'] == 14 || $_GET['confirm'] == 15 || $_GET['confirm'] == 16) { include("test/query/test_query.php"); } ?&gt; </code></pre> <p>When this page executes, the following error is always shown:</p> <blockquote> <p>PHP Notice: Undefined index: confirm in [file location].php on line 6</p> </blockquote> <p>Also, users access this page by being redirected from the home page (which is a standard HTML page). The full URL when properly navigated to is the following:</p> <blockquote> <p><a href="http://www.%5Bsite%5D.com/test.php#login" rel="nofollow">http://www.%5Bsite%5D.com/test.php#login</a></p> </blockquote> <p>... I understand why the error is thrown. What I don't understand is how this code could ever work as it does on the original server. Could I be missing a configuration setting?</p> <p>*This same issue happens in dozens of locations all over the site. This is just one specific occurrence of the issue. </p> http://stackoverflow.com/questions/1806125/ruby-ruby-sockets-how-to-create-a-post-request 0 (ruby) ruby sockets: how to create a POST request? hatorade 2009-11-26T23:34:16Z 2009-11-27T04:09:51Z <p>How does one create a POST request using TCPSocket in Ruby? Is there a special format to making a post? I have the following but I get a parse error (it's for a rails server):</p> <pre><code>require 'socket' s = TCPSocket.open("localhost", 3000) s.puts("POST /&lt;controller&gt;/&lt;action&gt; HTTP/1.1") s.puts("Host: localhost:3000") s.puts("Content-Type: application/x-www-form-urlencoded") s.puts("Content-Length: 103\r\n\r\n") </code></pre> http://stackoverflow.com/questions/1805819/cross-site-tomcat-form-post-not-working 0 Cross-site tomcat form post not working Rolf 2009-11-26T21:46:47Z 2009-11-26T22:22:17Z <p>Hi,</p> <p>For a customer, I need to write a Servlet which can print values in a form post. The form is hosted on another server and looks somewhat like this:</p> <pre><code>&lt;form action="http://myserver/myServlet" method="POST"&gt; &lt;input type="text" id="someName" value="someInterestingValue"/&gt; &lt;input type="submit" value="submit" /&gt; &lt;/form&gt; </code></pre> <p>I have a Tomcat 5.0.28 server available, running on a Java 1.4 jdk, so I made a simple servlet:</p> <pre><code>public class ProxyServlet extends HttpServlet { public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { PrintWriter out = res.getWriter(); Enumeration a =req.getAttributeNames(); while (a.hasMoreElements()){ String attrname = (String) a.nextElement(); out.println(attrname+"="+req.getAttribute(attrname)+"&lt;br/&gt;"); } out.close(); } } </code></pre> <p>When I go to the servlet by URL everything looks as expected. When I send a GET request with some parameters, I can see those as attributes in the debugger in the doGet() method (method was left out for brevety).</p> <p>However, in the doPost(), my form fields seem to be missing. I've looked into the Tomcat logfiles, and nothing special is logged. I tried to add a crossdomain.xml to some directories but did not find a way to change this behaviour. </p> <p>So to be clear: The Form as listed above is on server A. My servlet runs on an existing legacy Tomcat/Java application hosted on server B. When the form is of type "POST" none of the fields arrive at the Servlet on server B. Apache is NOT "in front" of Tomcat.</p> <p>Is there some configuration setting I am missing in Tomcat? Any tips or suggestions where to look next? Help is greatly appreciated.</p> http://stackoverflow.com/questions/1123093/wcf-posting-jsonized-data 0 WCF, POSTing JSONized data puffpio 2009-07-14T01:57:56Z 2009-11-26T03:45:25Z <p>I have a complex type:</p> <pre><code>[DataContract] public class CustomClass { [DataMember] public string Foo { get; set; } [DataMember] public int Bar { get; set; } } </code></pre> <p>I then have a WCF RESTful webservice that has this in it:</p> <pre><code>[OperationContract] [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/class/save")] bool Save(CustomClass custom); </code></pre> <p>so on the browser side I jsonized my CustomClass object to it looks like:</p> <pre><code>var myClass = "{ foo: \"hello\", bar: 2 }"; $.ajax({ contentType: "application/json", data: { custom: myClass }, dataType: "json", success: callback, type: "POST", url: "MyService.svc/class/save" }); </code></pre> <p>I submit the data w/ jquery using $.ajax so I can manually set the content type to "application/json" and when it submits, the postbody looks like</p> <pre><code>custom=&lt;uri encoded version of myClass&gt; </code></pre> <p>I get the following error:</p> <p>The server encountered an error processing the request. The exception message is 'There was an error checking start element of object of type MyAssembly.CustomClass. Encountered unexpected character 'c'.'. See server logs for more details. The exception stack trace is: at System.Runtime.Serialization.XmlObjectSerializer.IsStartObjectHandleExceptions (XmlReaderDelegator reader) at System.Runtime.Serialization.Json.DataContractJsonSerializer.IsStartObject(XmlDictionaryReader reader) at System.ServiceModel.Dispatcher.SingleBodyParameterMessageFormatter.ReadObject(Message message) at System.ServiceModel.Dispatcher.SingleBodyParameterMessageFormatter.DeserializeRequest(Message message , Object[] parameters) at System.ServiceModel.Dispatcher.DemultiplexingDispatchMessageFormatter.DeserializeRequest(Message message, Object[] parameters) at System.ServiceModel.Dispatcher.UriTemplateDispatchFormatter.DeserializeRequest(Message message , Object[] parameters) at System.ServiceModel.Dispatcher.CompositeDispatchFormatter.DeserializeRequest(Message message, Object [] parameters) at System.ServiceModel.Dispatcher.DispatchOperationRuntime.DeserializeInputs(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage3(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage2(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage1(MessageRpc&amp; rpc) at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)</p> <p>I've tried wrapping my json'ized data...i've tried using $.post to send the message (but that doesnt set the contenttype to application/json so the webservice doesn't understand)..any ideas?</p>