Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
14answers
3k views

What's wrong with using $_REQUEST[]?

I've seen a number of posts on here saying not to use the $_REQUEST variable. I usually don't, but sometimes it's convenient. What's wrong with it?
24
votes
10answers
8k views

Multiple submit buttons in an HTML form

Let's say you create a Wizard in an HTML form. One button goes back and one goes forward. Since the "back" button appears first in the markup, when you press Enter it will use that button to submit ...
13
votes
13answers
2k views

How to prevent multiple inserts when submitting a form in PHP?

Sometimes the user may press Enter twice, and the post is inserted twice. Is there a solution to prevent this other than check if there is already a post with the same title and content?
11
votes
5answers
4k views

Multiple Submit Buttons — Specifying default button

I have a form that has three submit buttons as follows: <input type="submit" name="COMMAND" value="&lsaquo; Prev"> <input type="submit" name="COMMAND" value="Save"> <input ...
9
votes
1answer
93 views

How send a form with Javascript when input name is “submit”?

Question: How can you send a form with Javascript if one form input has the name submit? Background: I am redirecting the user to another page with a hidden HTML form. I cannot change name on the ...
9
votes
5answers
10k views

How to capture submit event using jQuery in an ASP.NET application?

I'm trying to handle the submit event of a form element using jQuery. $("form").bind("submit", function() { alert("You are submitting!"); }); This never fires when the form submits ...
9
votes
7answers
13k views

How do I capture response of form.submit

I have the following code: <script type="text/javascript"> function SubmitForm() { form1.submit(); } function ShowResponse() { } ...
8
votes
6answers
2k views

Do you always REDIRECT after POST? If yes, How do you manage it?

Say, you are submitting a form, which affects your database (adding records/ deleting them/ updating them) and this is how your request looks like: POST /application/action=update Now, say, you ...
7
votes
2answers
234 views

Postpone file uploading form submission until it is validated [closed]

Possible Duplicate: Pause form submission for validation It's a continuation of this post. So basically I'm uploading a file in an iframe. But before submitting, I grab data from the form ...
7
votes
4answers
5k views

Submit form input fields added with javascript

I'm making a simple form to create polls, therefore I want the possibility to add additional input fields in case the user wants more options in the poll. I've made Javascript code that adds a new ...
6
votes
5answers
424 views

Pause form submission for validation

I have some form, which uploads file in an iframe. I'd like to hold it's submission until I'll check if it's valid with ajax. How can I do this ? My code pauses the submission and returns validation ...
6
votes
4answers
6k views

MVC jQuery submit form (without page refresh) from JavaScript function

I'm pretty new to all this. I'm using ASP.NET MVC C# LINQ to SQL. I have an edit page that loads Authors and all their Books. The Books are loaded via an Ajax call. <script ...
5
votes
3answers
892 views

Prevent form from being submitted twice

I have a simple php form, like this: <?php if(isset($_POST['myform'])) // email... else // display form the problem is that if I refresh the page after I submit the form, it gets ...
5
votes
4answers
112 views

Professional Tips and Tricks

I'm trying to polish my web programming skills with the unobtrusive yet extremely helpful polish I find on many sites. Stackoverflow.com, for one. When I ask a question, the page submits the ...
5
votes
5answers
2k views

How to prevent repeated postbacks from confusing my business layer

I have a web application (ASP.Net 3.5) with a conventional 3 layer design. If the user clicks a button a postback happens, some middle and data layer code runs, and the screen is refreshed. If the ...
5
votes
8answers
21k views

How to make a submit out of a <a href…>…</a> link?

The title pretty much says it all. I got an image with which links to another page using the < a href="..."> < img ...> < /a> How can i make it make a post like if it was a button < input ...
4
votes
1answer
428 views

Submit the dijit editor contents

I am trying to learn the dijit editor. I want to replace an existing text area with dijit editor widget.So I wrote 2 jsps - one using the dijit.Editor which feeds another jsp with the editor contents. ...
4
votes
1answer
112 views

Doubled POST requests instead of single

I have an edit page for my object. Because I've divided data in two tabs, I'm using jquery-ui. On the first tab (#core_data) I'm loading object's main data. Form is submited via Ajax : <form ...
4
votes
3answers
1k views

why doesn't hitting enter when a SELECT is focused submit the form?

Consider the following HTML: <form action=""> <input /> <select> <option>A</option> <option>B</option> </select> ...
4
votes
1answer
251 views

How does drupal choose which function to process a form submit?

I'm really confused,can someone clarify this?
4
votes
4answers
403 views

Using jquery to prevent resubmitting form

I use jquery's .submit() to intercept user's submit event, however I found a problem. When the user single click the submit button, the form is submitted normally, but if a user deliberately fast ...
4
votes
5answers
765 views

Three Checkboxes, One must be selected to enable submit button, needs Jquery?

I have between 1-three checkboxes and by default they are all disabled. In order for the submit button to be active ove checkbox minumum must be selected. Can someone help me with a jquery snippet to ...
4
votes
2answers
2k views

jQuery partial page refresh after form submit

When using jQuery to submit a form is it possible to place the resulting page (after the submit) inside another HTML element? I'll try to make this clearer. Up to now I've been using Callback ...
4
votes
2answers
2k views

ASP.NET MVC - post multiple complex objects with form

In an ASP.NET MVC application I am trying to submit multiple objects with a single form. I am able to get simple types to post back but am having issues with complex types. I feel like I have mimicked ...
4
votes
6answers
596 views

What is a good method for preventing a user from submitting a form twice?

I have a purchase page and I don't want the user to be able to refresh the page and resubmit the form once they get to the 'order complete' page because it automatically sets them up in our system via ...
4
votes
2answers
1k views

Will a disabled text field submit when a form is POSTed?

If I submit a disabled text field via POST, what will the resulting value be on the action page? For example, I have: <table border=0 cellpadding=4 cellspacing=0> <tr><td> ...
4
votes
4answers
8k views

Submitting POST data from the controller in rails to another website

In the web app I'm building with ruby on rails I have a form that the user submits with some basic data. The data is retrieved in the controller and more information that needs to remain private is ...
4
votes
2answers
498 views

Choose button while pressing enter button

I have a submit button and back button in my asp.net webform. I need to use the submit button when pressing enter, but it's going to the back button instead. Please help...
4
votes
8answers
6k views

Hitting “enter” does not post form in Ie8

I'm using php to pass a login form when required, and here is the code: $htmlForm = '<form id="frmlogin">'. '<label>'; switch(LOGIN_METHOD) { case 'both': $htmlForm ...
4
votes
2answers
8k views

JavaScript OnBlur event prevents HTML form from being submitted

Consider the following form: <form action="/a" method="post"> <input name="x" type="text" onblur="myonblur(e)" /> <input name="y" type="text" /> <input name="submit" ...
4
votes
4answers
24k views

submit a form via Ajax using prototype and update a result div

I'm wondering how can I submit a form via Ajax (using prototype framework) and display the server response in a "result" div. The html looks like this : <form id="myForm" action="/getResults"> ...
3
votes
2answers
114 views

Manually submitting a form using JavaScript doesn't send the submit button

I have a form that has two submit buttons. I want to submit the form manually using JavaScript and have the input button used to submit the form posted along with the other form elements, as it would ...
3
votes
1answer
71 views

JQuery: Autocomplete form submitting

I'm trying to use the jQuery Autocomplete function to submit a form when an item has been selected or an enter has been pressed upon selection. using PHP, Javascript and HTML. I'm trying to figure ...
3
votes
1answer
274 views

http/https form submit and security

I've found strange browsers behavior (firefox, opera but not chrome). If I do the following on HTTP page (submit form immediately, before full page load), browser tells that target HTTPS page is not ...
3
votes
4answers
389 views

Trying to simulate the clicking of a button with greasemonkey

I'm trying to write a greasemonkey script that updates inventory for a collection of items through the browser. To do this I need to autofill a few forms and simulate a mouseclick on the submission ...
3
votes
2answers
59 views

Good resources for coding forms with jQuery

I've been trolling around for a couple days now looking for some good resources on form validation and submission with jQuery. Of course, I've been able to find some specific blog posts on sites like ...
3
votes
2answers
1k views

jsf: integer property binded to a inputtext in UI is set to zero on submit

I have integer properties from my bean binded to inputtext UI elements in jsp pages. initially when they are rendered, default value of this integer properties is null. Now when i am submitting the ...
3
votes
5answers
254 views

Disabled jQuery UI Button Remains Disabled on Returning to Page

I have a JQuery UI submit button on a form when it's clicked to both prevent double-clicking and to also make it visibly clear that it was in fact clicked properly. So I use jQuery to do this: ...
3
votes
1answer
547 views

How to submit web forms using Python?

First of all, sorry if this question is a little vague and rambling! I'm ok with Python, but I've never done anything HTTP related before. I'm trying to automate submitting a web form, and from ...
3
votes
3answers
587 views

google chrome submits form even if there is no SUBMIT button

This bug/feature cropped up in one of my pages when viewed in google chrome so i wrote a test page which looks like this <body> <form action="loginhandler.php"> <input ...
3
votes
4answers
668 views

jQuery: form not submitting with $(“#id”).submit(), but will submit with a 'submit' button?

<form method="post" action="load_statements.php?action=load" id="loadForm" enctype="multipart/form-data"> that is my form, which looks fine to me. in that form, i ...
3
votes
3answers
317 views

Simple form validation. Object-oriented

Problem statement: It is necessary for me to write a code, whether which before form sending will check all necessary fields are filled. If not all fields are filled, it is necessary to allocate with ...
3
votes
1answer
205 views

Posting a link as Submit Button

<form method="POST" action="auth/signin"> Username: <input name="username" type="text" value=""/> Password: <input name="password" type="password" value=""/> ...
3
votes
2answers
2k views

How do I download a file with WWW::Mechanize after it submits a form?

I have the code: #!/usr/bin/perl use strict; use WWW::Mechanize; my $url = 'http://divxsubtitles.net/page_subtitleinformation.php?ID=111292'; my $m = WWW::Mechanize->new(autocheck => 1); ...
3
votes
5answers
914 views

PHP: Stop a Form from being accidentally reprocessed when Back is pressed

What is the best way to stop a form from being reprocessed when a user hits a Back button? I'm following the Post/Redirect/Get pattern, so I don't have a problem if F5 is pushed, but the back button ...
3
votes
2answers
150 views

what encoding it is?

If i have a HTML page with setting to be UTF-8. and then I input Chinese characters with encoding big5 in the form and submit. what encoding it is at server side ? is it automatically converted to ...
3
votes
5answers
14k views

How can PHP determine if user pressed Enter key or Submit button?

The problem I'm having is that I have multiple submit inputs in a single form. Each of these submit inputs has a different value and I would prefer to keep them as submit. Whenever the user presses ...
3
votes
5answers
3k views

How do I submit a form with a link in ASP.Net MVC?

I have a HTML form, and I have a Controller Action that accepts the POST request. Everything works with a regular submit button, but I would like to submit the form with a link (<a>-tag) ...
2
votes
2answers
17 views

detect UIWebView form submission in XCode

I've read the posts here, but cannot quite adapt them to my needs. I have: -(IBAction) abouthtml { NSString *urlAddress = [[NSBundle mainBundle] pathForResource:@"about" ofType:@"html"]; NSURL *url ...
2
votes
3answers
56 views

how to check for a condition before programmatically submitting a form in javascript

I have a form which I want to submit only if a condition is true. But there is also a case in which I want to programmatically. Following works when manually submitting the form: <input ...

1 2 3 4 5 11