Tagged Questions
1
vote
1answer
123 views
Get querystring array values in Javascript [duplicate]
I have a form that uses the get method and contains an array:
http://www.example.com?name[]=hello&name[]=world
I'm trying to retrieve array values 'hello' and 'world' using JavaScript or jQuery.
...
-1
votes
2answers
79 views
PHP Added to query string on submit
I have a text field and a submit button, when I click on the submit button I want to add on to my query string.
example
http://www.fakewebsite.com/?name=mike
But my name appears blank
Here is my ...
1
vote
4answers
257 views
CakePHP: “GET” form does not auto-populate form fields after submission
I'm using Cake 2.3.0. If I submit my form using POST, the selected form fields carry over however if I submit my form using GET, all of the form fields return to their default values.
Is there a way ...
0
votes
1answer
56 views
Form Submission after dynamic addition of elements not framing the proper query-string
I have created a form with 2 input text fields in a jQuerymobile page. But On click of some button which is outside this form, I am dynamically adding 2 more input fields to this form inside the div ...
0
votes
1answer
101 views
Grab form input onBlur to create a querystring
First a little background... I'm working on a database project that gathers its data via a web form from printed labels associated with museum specimens. Part of the form includes several Locality ...
3
votes
2answers
81 views
How can I use several form inputs with the same name?
I have several checkbox (I don't know number of them) that create from a loop in a form.
<form>
<input type="checkbox" name="id" value="id">
<input type="checkbox" name="id" ...
-1
votes
2answers
131 views
Larvel : To use $_GET or $_POST for search
In all laravel tutorials, they use the POST method for forms. For searching, I thought it was better to have the FORM use GET instead, so that as soon as the the form gets submitted, the query string ...
0
votes
1answer
138 views
jquery mobile query string parameters
In my application I have back end code as perl and front end development using jquery mobile. When I submit a form on jqm page using the variables x=10 y=20, in the query string instead of replacing ...
0
votes
0answers
92 views
How to handle search query strings with jQuery sort, number of results, page number, etc. SELECT menus?
I have multiple forms that I'm using to offer various search functions such as sort options, number of results per page, page number, etc. I am using the GET method so URLs can be used to remember the ...
1
vote
2answers
1k views
PHP : Form example which will encrypt query string (GET) (data hiding rather than security)
I intend to use GET for my form but would like to encrypt the values in the query string so that users are not able to change it. (not for security, but for data hiding purposes)
I came across a ...
1
vote
1answer
689 views
Passing values in a querystring to automatically populate fields on a form
I want to pass some fields (for example like name information) into a form. I may not be the developer of this form though, so I am not sure how the page load or query strings are handled.
By doing ...
0
votes
0answers
60 views
yml select group jquery property select
I have a group of 3 select menu's that use a yml file.
Africa:
Botswana:
Namibia:
Aziƫ:
Indonesiƫ:
- Bali
- Java
Hong Kong:
...
1
vote
2answers
236 views
html forms: checkboxes group for pretty url query
I have the following search form:
each field is a checkbox, so each group is multiselectable
<form action="search">
<fieldset id="type">
<legend>Offer ...
0
votes
2answers
429 views
javascript form.submit() losing querystring created by GA _linkByPost
We have a booking form that POSTs to the parent company website. Because this is a different domain we need to implement the GA _linkByPost to pass the GA tracking cookie info across domains.
As the ...
2
votes
3answers
345 views
Form is not sending any data to querystring
I am at my wits end here, I am positive that this is some ridiculous typing error, or I have forgotten to write something.
Anyway I am trying to send data from a form that is inside a twitter ...
1
vote
0answers
1k views
HTML form POST method with querystring in action URL
Lets say I have a form with method=POST on my page.
Now this form has some basic form elements like textbox, checkbox, etc
It has action URL as http://xyz.com/someAction.do?param=value
I do ...
0
votes
2answers
1k views
Simple form that redirects with query string from field
I am brushing up on my HTML while in the process of learning django and am wanting to create a form (single field and button). The button, when pushed should redirect to a page with the value in the ...
0
votes
1answer
409 views
How to pass data between pages with a normal link?
I've recently learned the method of using action="GET" to pass form-data on to the next page.
I'm in a situation where I'd like to click a normal link (a href=etc and so on) and have it pass a little ...
0
votes
5answers
1k views
Convert Form Post to Querystring
I am working in ASPDotNetStorefront on an XML package (largely irrelivant). Basically I have a form with a bunch of fields and a button that 'submits' the form. I would actually like to have the ...
0
votes
3answers
321 views
Simple Javascript error - Form submit doesn't append querystring
I want to submit a form to a URL appending few values as the querystring.
I am using this to call;
<form id="form1" method="GET" action="http://abc.appspot.com/_ah/xmpp/message/chat/">
...
5
votes
4answers
2k views
Why is the comma URL encoded?
When debugging in ASP.NET MVC, I don't see a difference between:
http://mysite.com?q=hi,bye
and
http://mysite.com?q=hi%2Cbye
The querystring param "q" always has a value of "hi,bye".
So why is ...
0
votes
2answers
730 views
WordPress / PHP: Add search string onto existing query string
In a wordpress theme I have set up some search filters based on custom taxonomies, which will query posts using a URL structure like:
...
0
votes
4answers
668 views
jQuery or Javascript to parse querystring on submit
This form has multiple choices through a checkbox. Eg. Pet You Own is a multiple choice and there are various options such as Cat, Dog, Mule etc.
Now by default, the querystring sent will look like:
...
0
votes
3answers
292 views
Query String in form does not work
I have the following form in my form.php file:
<form action="operation.php?part=dictionary&operation=<?php echo (($_GET['action']=='addword')?'save':'edit&id='.$_GET['id'])?>" ...
0
votes
4answers
662 views
Form and QueryStrings in ASP.Net
I have a form on home.aspx that is this:
<form name="search" method="post" action="searchresults.aspx" id="searchform" runat="server">
<div ...
1
vote
4answers
257 views
Form submit creates automatic GET vars?
I have a search form
<!-- SEARCH -->
<form name="search" class="search" action="/search/" method="get">
<input type="text" size="20" name="keywords" class="searchfield" ...
5
votes
1answer
939 views
How can I remove empty fields from my form in the querystring?
I have a simple form with four inputs. When I submit my form, I want to use the GET http method.
For the example :
aaa : foo
bbb : ____
ccc : bar
ddd : ____
I want to have this query string :
...
1
vote
3answers
912 views
HTML Forms: Submit button that goes to querystring?
I'm working on a Rails site, and I've got my database indexed with IndexTank. I have things set up so that to search, all I have to do is browse to [root]/search?q=[query]. To simplify things, I'm ...
0
votes
1answer
171 views
Hide HTML form unless certain querystring is selected
<form name=dateform method="get">
Select Date:
<a href="http://www.test.com/test/default.asp?action=home" onclick="location.href=this.href+'&rundate='+rundate;return ...
2
votes
2answers
1k views
can a forms action url contain querystring values?
can a forms action url contain querystring values?
0
votes
2answers
1k views
Passing data from a form through a query string in Rails
I am creating an application with a search feature, and I would like have it set up similarly to Google or Twitter search, where there is a landing page with a search form at the root URL and then ...
1
vote
2answers
567 views
Appending a Query String to the End of a Function Action URL
For the code below, I would like to append echo $_SERVER['QUERY_STRING']; to the end of index.php. But when I try to do it, it makes the code return a blank page. So I think I might be doing it ...
0
votes
2answers
807 views
How can I read the URL-Data send with POST in Perl?
I'm trying to read out the POST-Data that was sent from a form in a page to my Perl Script. I googled and found out that:
read(STDIN, $param_string, $ENV{'CONTENT_LENGTH'})
reads out the whole ...
22
votes
3answers
12k views
How to remove x and y on submit in HTML form with Image type button?
I have created a form in my application as follows:
<form action="/search/" method="get">
<input id="search-box" name="search" type="text" size=30 title="Search" value="" />
...
13
votes
4answers
2k views
What happens if the action field in a <form> has parameters?
Is there a well-supported, common behavior that I can expect if I do something like this in HTML:
<form method="get" action="/somePage.html?param1=foo¶m2=foo">
<input ...
2
votes
1answer
1k views
Returning form, querystring, cookie values by priority in ASP.NET MVC
I'm wondering why query string is preferred when getting values from user request. Where?
1) Code of System.Web.Mvc.DefaultModelBinder looks like this (only part of it):
HttpRequestBase request = ...