0
votes
4answers
47 views
How can I do a sort and search using both GET and POST variables?
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:
<a href="
<?php
// Sorts by …
2
votes
5answers
59 views
Escaping user data, without magic quotes
Hey,
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.
Obviously, with the …
0
votes
2answers
32 views
(ruby) ruby sockets: how to create a POST request?
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):
require 'socket'
s = …
0
votes
3answers
27 views
Post the checkboxes that are unchecked
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 …
0
votes
1answer
32 views
sending XML file from IPhone to a server using Post Method
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 …
0
votes
3answers
33 views
Cross-site tomcat form post not working
Hi,
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:
<form action="http://myserver/myServlet" …
0
votes
2answers
74 views
PHP - Dealing with GET and POST arrays
In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page and GET array isset, …
0
votes
1answer
27 views
URL requests adding POST data to querystring
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.
I have included a random token in the querystring …
0
votes
1answer
22 views
iphone table view delete entry and update app engine db
Hi,
I have a tableview with data, that i post to the app engine database.
Whenever i delete an entry in the table, i want to delelte the item in the app engine database as well. How do i know which …
1
vote
1answer
33 views
When I send a post request in python…how do I…
Have a "check"?
For example...
I would have a dictionary with the parameters to sent to the POST.
params = {'text':'how are you?', 'subject':'hi'}
then I would have
…
0
votes
3answers
25 views
Strange x & y POST values being sent in form
What are these x & y values that are being sent back with seemingly random values?
After submitting my form, I output the _POST array using print_r() to make sure my form is being submitted …
0
votes
5answers
78 views
POST to a form that POSTS to another form
From an external site, I need to present a form that POSTS data to secure.domain.com/index.php. Inside of index.php, I fill some hidden fields which in turn need to be posted to …
0
votes
1answer
22 views
Putting together a valid NSMutableURLRequest using POST for TripIt webservice
Hi
Im trying to get TripIt OAuth authentication working, but I find the documentation to go a bit over my head. TripIt docs
The paragraph below is from the documentation, I have tried putting …
0
votes
1answer
23 views
jquery ajax post to non-ssl page while current page is ssl
Ok, situation:
an https / ssl page
jquery
a form
submitted via ajax to a non-ssl pagge
getting no usefull response
the same scenario, non-ssl to non-ssl works perfect.
I can view my console, but …
2
votes
3answers
52 views
Firefox .post and jquery
Ok, basicly, I made a script (that one) that makes a .post to a php file, which then insert some info into a database to track link clicks. Works fine in IE8 and Opera 10, but, doesn't work in …
