i'm flabbergasted,
i've looked at almost every example, but it just doesn't work (the other party says they don't receive my data in the request parameter)
I want to do this in code (send some xml data (without the xml declaration) to a uri):
<form method="post" action="http://100.100.100.100:11111/getinfo">
<input type="text" va...
Hi there,
What would be the best way to send a complete post to a model in Code Igniter? Methods I know are as follow:
Name form elements as array, eg.
<input type="text" name="contact[name]">
<input type="text" name="contact[surname]">
and then use:
$this->Model_name->add_contact($this->input->post('contact'));
The other would ...
Hello,
Im trying to insert data into a table in MySQL. I found/modified some code from w3Schools and still couldn't get it working. Heres what I have so far:
<?php
$rusername=$_POST['username'];
$rname=$_POST['name'];
$remail=$_POST['emailadr'];
$rpassword=$_POST['pass'];
$rconfirmpassword=$_POST['cpass'];
if ($rpassword==$rconfirmpa...
I was wondering how to develop a secure form post through AJAX.
For example, i have:
My HTML form.
My JavaScript handling the submit.
The submit url is "post_data.php"
The posted data is:
id=8&name=Denis
The PHP verifies if variables id and name are POSTED and their data type. If this is ok it proceed to do some stuff on a databas...
Ok,
I'm trying to use jQuery $.post with the PasteBin API to create a PasteBin page and grab the URL (which the API says it returns). Here is my code so far:
$('#send_code').click(function(){
$.post('http://pastebin.com/api_public.php',
{ paste_name: $('#paste_name').val(), paste_code: $('#paste_code').val() },
...
i have a miniblog application, with a class named New(refering to a new post), having a foreign key to an user(who has posted the entry).
above i have a method that displays all the posts from all the users.
I'd like to show to the logged in user, only his posts
How can i do it?
Thanks in advance!
def paginate(request):
paginator = N...
I have a web app that is calling a web handler .ashx via jquery POST on the production server it works fine but on the testing and locally all POST requests are much slower. All GET requests are very fast but POST are much too slow. What could be causing that? How can I troubleshoot it?
...
I'm trying to post data to a page that handles it for me. I always get following error, however:
ioErrorHandler: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://localhost:8080/_user/a/ad/admin/message.create.html" errorID=2032]
Blockquote
This is the code I hav...
Hello all,
I have just tested my site on an old IE6 browser on a windows server.
The problem I have is when I submit a form, the POST data I get on the other page is empty. Array().
This site has worked on IE6 on a different windows server, it has worked on my laptop and works on all other major browsers (Firefox, Chrome, IE6,7,8, Saf...
I'm trying to open the Safari browser in my app using http post.
I know how to do this using get, but I can't find anything for http post.
Any help would be appreciated. Thanks!
...
Hi!
I am having some problems with some page post backs that take a loooong time to execute.
If I do a "appcmd list requests" I can get something like this:
REQUEST "79000001800004e3" (url:POST /dir/file.aspx, time:87219 msec, client:xxx.xxx.xxx.xxx, stage:ExecuteRequestHandler, module:ManagedPipelineHandler)
REQUEST "8600000080002f8...
Hi,
I'm struggling to read an int from the hidden field on aspx page.
<input type = "hidden" id = "myIntegerId" name = "integerId" value= "<%: Model.MyObjectId %>" runat = "server" />
The value is definately on the form, I can see it in the debugger and print it with <%: %>
When I read the form values in the controller, instead of ...
For some reason, only in IE (tried 7 & 8), jQuery is performing a POST request when it should be a GET. See below:
function(...) {
/* ... */
$.ajax({
type: 'GET',
dataType: 'script',
url: '/something/' + id,
processData: false,
data: 'old_id=' + oldId,
success:function(data) {
alert(data);
}
});
...
Hi, I'm having some issues trying to make a HTTP PUT (or POST) using WebClient against a MVC 2 controller. The exception is:
The parameters dictionary contains a null entry for parameter 'total'
of non-nullable type 'System.Int32' for method
'System.Web.Mvc.ActionResult Company(System.Guid, Int32, Int32, System.String)'
The controller...
Hi, this is my code and I don't know how to debug it because I just get an "internal server error":
I am trying to HTTP POST to an external ASPX:
def upload
uri = 'https://api.postalmethods.com/2009-02-26/PostalWS.asmx' #postalmethods URI
#https://api.postalmethods.com/2009-02-26/PostalWS.asmx?op=UploadFile
#http://www.p...
I've been trying to find a solution for ages with no success. On our app, customers submit a form and on the next page we process it. Sometimes though the data never arrives. This seems to happen for just a few of our customers. Seems to happen with IE7 and using a proxy.
Here's some headers, note the HTTP_VIA:
X-REWRITE-URL: /process....
Hi,
I get this error with reCaptcha:
'Input error: response: Required field must not be blank
challenge: Required field must not be blank
privatekey: Required field must not be blank'
I'm sending the data via POST, so I don't understand what is going on. This is the code I use:
public static Boolean Check(String challenge, Strin...
I am trying to post from a form to another form in a fancybox ( http://fancybox.net/ ) window.
For example I have a list of cities with tickboxes on a form.
When the user clicks submit on the first form, I am hoping for the fancybox window to appear with another form in. There will be a textbox on the new form that has the city ids sel...
Greetings,
Just getting into PHP web development. I've got an HTML form where a user checks some series of dynamically-generated checkboxes, and submits via POST. On the PHP side, I want to check which of the check-boxes were clicked.
I have an array $full_list, and am doing something like
$selected_checkboxes = array_filter($full_l...
Greeings:
I'm a bit of a newb with both extJS and json. What is the most painless route to POSTing json data using extJS? I'm not really interested any GUI features, just using the framework to send some sample data.
...