1
vote
4answers
40 views
How to get unselected checkbox?
Hello!
I have three checkboxes like ch[0], ch[1] and ch[3] (sometimes i have more, or less, it's dinamic) and in PHP i want to get the unselected items also, like this: 0=yes,1=no …
0
votes
1answer
11 views
CodeIgniter: post variable not being read
I have a controller user with a method login
For some reason, when I call:
$this->post
I get an error Undefined property: User::$post
While, this works fine:
print_r($_POS …
0
votes
2answers
31 views
Is there a way to change (delete) a standard phrase going after a single post in Wordpress?
Hello everybody, my question is about Wordpress.
Is there a way to get access to the phrase, going after a single post?
"Enjoy this article
If you have enjoyed this article cons …
1
vote
4answers
71 views
ASP.NET MVC POST Parameters in the url
url : /jobs/UpdateJobResults/GUIDHERE
When I do a post to the below function the guid id is always blank, can I use the above format to POST the GUID in the url (as the form body …
0
votes
5answers
78 views
Is there a way to put Java objects in a POST request from a JSP?
I have a JSP page that renders, and calls a Web service to load some initial data. The user fills out some form information, and then submits it to the server, which could possibly …
0
votes
2answers
32 views
HREF Submit + value
i got this:
<form method='post'>
<input type='submit' value='".$slotm[0]."' name='slott'> ".$slotm[1]."
</form>
but i want to transform in a
so i tried
< …
0
votes
1answer
59 views
Is there any way to debug a call coming from an AJAX post?
Is there any way to debug a call coming from an AJAX post? This jQuery fires when the user hits OK:
$.post(
"/Detail/Copy",
{
bpid: $("#benefit_plan_id").val(),
…
0
votes
3answers
34 views
How to upload huge files from Nokia 95 to webserver?
I'm trying to upload a huge file from my Nokia N95 mobile to my webserver using Pys60 python code. However the code crashes because I'm trying to load the file into memory and tryi …
0
votes
4answers
44 views
PHP quiz send data to next page
ok, i'm trying to do a quiz...all good by now. but when i'm trying to send the collected data(radio buttons values) through pages i can't get the logic flow. I have the main idea b …
0
votes
2answers
43 views
retreive POST data from FLASH to ASP.Net
here's my AS3 code:
var jpgEncoder:JPGEncoder = new JPGEncoder(100);
var jpgStream:ByteArray = jpgEncoder.encode(bitmapData);
var header:URLRequestHeader = new URLRequestHeader("C …
0
votes
2answers
55 views
Sending XML data using HTTP POST with PHP
I need to send this XML
<?xml version="1.0" encoding="UTF-8"><gate><country>NO</country><accessNumber>1900</accessNumber><senderNumber>19 …
0
votes
4answers
29 views
how to check which event caused the post back in asp.net mvc application
I have one View and one Controller in my ASP.net MVC Application.
I have one "Submit" button & one "Cancel" button in my view.
When I click any of the botton below action wi …
0
votes
1answer
40 views
iPhone Make POST request, handle cookie
I'm hoping someone can shed some light on the following, I think I am heading in the right direction with this. I want to login to my server with a user/pass combo, then I need to …
0
votes
2answers
35 views
How do you past post data without the name value for inputs?
passing post data using cURL requires that the name of the input. However, I was wondering how can you do it if the input was not assigned a name?
curl -d "user=foobar&pass=12 …
1
vote
2answers
30 views
How to use jQuery to show a page returned from a POST in a dialog?
I'm wanting to use the jquery dialog to open a modal dialog, and in it display the returned page from my server that results from a POST.
How can I do this?
Right now I've got so …
