0
votes
3answers
39 views

# in query string breaks php GET

Running into a problem with a form I have built. A user typed in a hash (#) for their address in the address field. When their address is put into a query string after the form is submitted all of my ...
0
votes
2answers
110 views

Concrete5: Can I use $_GET variable for query string on Regular Page?

How does $_GET Variable works with Concrete5? Can I use that on regular page? I know I can do this with single page via url segment, I'm just wondering if it is possible with regular page. Example ...
1
vote
1answer
36 views

how to get from mod_rewrited url query string

I have a liitle mod_rewrite problem. I have index.php (in root directory) which contains simple href link: <a href="novice/this-is-something">Novice</a> When I click on Novice, ...
0
votes
1answer
134 views

.htaccess - Querystring without index.php

I want my url's to look like this: "http://www.example.com/start", and not like this: "http://www.example.com/index.php/start". That works fine with this code in my .htaccess: RewriteEngine On ...
0
votes
0answers
109 views

Dynamically populating query string in a href tag

I would like to pose a question. I have an index.php file that dynamically populates all chapters contained in the database. My code is this : foreach($chapters_titles as $title){ echo "<a ...
0
votes
3answers
56 views

rewriting url for query strings

Hi I want To Ask How Can I convert http://abc.tk/comments.php?post_referrel_id=16 to http://abc.tk/comments.php?post_referrel_id/16 using .htaccess mod_write RewriteBase / ...
1
vote
1answer
319 views

Resteasy GET - JSON in QueryString

I would like to pass JSON arrays and list of JSON objects to Reasteasy GET method in query string. How can I access them in the service method? For example on array, if the parameter name is ...
1
vote
3answers
201 views

Read only parameter name in Querystring with $_GET

How can I read only the parameter name from a querystring in PHP? For example in both of these: www.example.com/index.php?a='1' www.example.com/index.php?a the wanted output is: a
0
votes
2answers
555 views

PHP combining two URL query string using two GET methods

I have two forms with a GET method. when I submit the 1st form I get this URL http://127.0.0.1/astronomy/student_enrollment.php?class_name_data=1&classNameGetDetails= and when I submit the 2nd ...
0
votes
1answer
724 views

Convert JSON data to querystring in C# GET request

What is the best way to convert a JSON object into querystrings to append to a GET Url? The POST is straight forward and gets read by my Web API backend. {Name: 'Mike' } = ?Name=Mike private ...
0
votes
1answer
132 views

Given a query string and the empty form html it came from generate filled in html

I have an html with empty forms and I have the query string that was generated when filling in those forms. How can I merge them together into a filled in html page? Hopefully you can give me a ...
1
vote
4answers
177 views

Is it bad form to pass an empty query string to a URL? [closed]

If I have a URL on a site that optionally takes parameters: http://example.com/process?foo=bar&baz=quux Is it bad form to pass it an empty query string: http://example.com/process? Instead ...
0
votes
1answer
93 views

remove query string

I'm using an ancient API, that sends the result over GET method to my app. So user will redirect to my action with a url like that: http://example.com/api/result?request=102&state=1 It's ...
3
votes
2answers
614 views

Javascript change query string for refresh

I am looking for a way to alter the get query string of an html request using javascript (jquery included) without refreshing the page. This query string would be carried over when refresh. For ...
0
votes
4answers
156 views

PHP get QUERY_STRING after '/'

I have my domain name and I would like to get the query from a URL like this: http://domain.com/querystring  and output would then be: querystring It is the same technique bit.ly uses and ...
0
votes
2answers
1k views

Java HttpServer/HttpExchange GET

I am trying to create a simple HttpServer in Java to handle GET requests, but when I try to get the GET parameters for a request I noticed the HttpExchange class does not have a method for that. Does ...
1
vote
2answers
266 views

In Symfony2, how can I refresh the page, changing just one parameter of the GET string?

How can I refresh the page, changing one parameter of the GET string? Say I'm on this page: /my/page?foo=bar&asd=qwe And in the controller, I have this variable: $var = array('foo' => ...
0
votes
2answers
141 views

How to preserve types in query strings

Im trying to put together an API that would consume json data, and I'm having problems preserving variable types. caveat: I'm using Node.js Given the data: { id: "string", data: [ {input: ...
0
votes
0answers
207 views

Why does codeigniter need at least 2 GET parameters before it will work?

Get is set up and works perfecty well but why are at least 2 'search terms' needed to avoid Codeigniter throwing an error. www.example.com/search?search_term1=code&search_term2=igniter I've ...
1
vote
5answers
3k views

How can I pass some values to my facebook canvas app in a query string?

I have developed a facebook canvas app which posts to users newsfeeds and I want to be able to allow users to click on the link in the newsfeed and be taken to my app along with some data that will be ...
1
vote
2answers
4k views

$_SERVER['argv'] with HTTP GET and CLI issue

I'm trying to write down a script to fetch some online data; script should be invoked either by a cron job or php cli and with standard GET HTTP request. As stated on PHP website $_SERVER['argv'] ...
1
vote
2answers
967 views

PHP Retrieve Keys From Query String, For each key: create URL removing that key from query string

Update: Thanks to Hakre and Martino for their answers: The function works alot better now: $queryString = $_SERVER['QUERY_STRING']; parse_str($queryString, $params); foreach ($params as $key ...
0
votes
1answer
90 views

Handle Multiple checkboxes on other page through get request

I have a table where I list products. There is a checkbox next to each item. Once select product button is pressed the <form> is submitted in a GET request. I can't find a way to process the ...
5
votes
4answers
292 views

What purpose is of “&rnd=” parameter in http requests?

all! Why some web-applications use http-get parameter "&rnd=" ? What purpose is of it? What problems are solved by this tag?
1
vote
1answer
213 views

phpinfo() in query_string clear $_GET variables

Hi im trying to make a form with a textbox to search words and functions. but when i search phpinfo( or phpinfo() all $_GET variables are empty. for example <form name="search-form" method="GET" ...
1
vote
2answers
4k views

Adding/Modify query string / GET variables in a url with javascript

So I am wanting to replace GET variable values in a url and if the variable does not exist, then add it to the url. EDIT: I am doing this to a elements href not the pages current location.. I am not ...
4
votes
1answer
235 views

Compojure Routes losing params info

My code: (defn json-response [data & [status]] {:status (or status 200) :headers {"Content-Type" "application/json"} :body (json/generate-string data)}) (defroutes ...
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" ...
3
votes
2answers
260 views

Bookmarking ASP.NET search results using POST or GET?

Hey guys, I'd like a little help understanding how HTML forms work. It is my understanding that forms that use GET as their method submit name/value pairs for all fields within the form tags of said ...
5
votes
1answer
938 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 : ...
3
votes
2answers
3k views

PHP add/modify a query string param & get the URL

How can redirect the user back to the same page with the existing Query Strings but have 1 added/modified like "page". I suppose 1 method is: parse the $_SERVER['QUERY_STRING'] into an array if ...
3
votes
1answer
4k views

How to pass & (ampersand symbol) in ajax get or post method?

I have a text box to enter description If i submits that need to be send through ajax and store in db. Problem:- Example text in textbox:- "Hi all & solve my problem" in the next page i am ...
1
vote
4answers
483 views

PHP GET Question: How do I set a variable value only if it's not in the query string?

I know how to get the value from the query string if the parameter exists: $hop = $_GET['hop']; But I also need to set a default value IF it's not in the query string. I tried this and it didn't ...
3
votes
1answer
897 views

Why does Python's urlparse.parse_qs() split arguments on semicolon

I'm writing a test script in Python to check the output of my PHP application and I've got a problem with Python's urlparse.parse_qs() function. GET string delimiter (AFAIK) is an ampersand. The ...
0
votes
1answer
1k views

GET request with space in QueryString crashes code

Simply put my code is working fine and returning JSON from GET requests, but when there is a space in one of the value pairs of the QueryString the Service shuts down. Even when debugging in the IDE ...
0
votes
1answer
1k views

Codeigniter and Pagination with Query Strings

I am trying to build a Search with Pagination in Codeigniter and would love some help with it. So far, I've realized that I can not use BOTH url segments and query strings together. Using only ...
1
vote
1answer
232 views

Building query string links

I'm building a filters section for my search page and I was wondering what is the best way to go about doing the query strings. My problem is that these links function a lot like checkboxes, so some, ...
3
votes
1answer
2k views

301 Htaccess RewriteRule Query_String

Problem: Visitors open the url website.com/?i=133r534|213213|12312312 but this url isn't valid anymore and they need to be forwarded to website.com/#Videos:133r534|213213|12312312 What I've tried: ...
0
votes
3answers
161 views

Why is there one of my select options that put nothing in the query string at form submission?

This is my html: <select name="results"> <option value="0">Vis alle</option> <option value="10">10 resultater per side</option> <option ...
2
votes
2answers
168 views

What is the best method of maintaining a large query string?

In several PHP applications I'm making I need to maintain a very long query string for filters for a table. I only want to change one or more GET variables per filter change, while the rest of the ...
0
votes
3answers
92 views

An Encoding Issue?

I think I have a URL encoding issue. I need to open a window using Javascript and pass a SQL Select query to it. So I have done this: window.open('view_query.php?sql_query=' + query + '&db_name=' ...
4
votes
5answers
4k views

PHP: How to check if query string or POST vars contain same var twice

It may sound strange, but in my PHP application I need to check if the same variable name has been declared more than once in the query string or POST variables, and return an error value if this is ...
0
votes
2answers
1k views

Double-byte characters in querystring using PHP

I'm trying to figure out how to create personalized urls for double-byte languages. For example, this url from Amazon Japan has Japanese characters within the querystring (specifically, the path): ...
0
votes
4answers
944 views

How do I pass the # symbol as part of a GET querystring in the URL?

I am using javascript (using jquery) to pass a # symbol as a GET parameter via AJAX call. The problem right now is that the # symbol is breaking up my querystring. Any help appreciated. Thanks!
1
vote
3answers
2k views

Alternative to Query Strings to Pass Data Between ASP.Net Pages?

I am currently using a number of query string parameters to pass some data from one page to a second page (the parameters hold confirmation/error messages to display in the second page), that due to a ...
2
votes
1answer
2k views

Encrypting Querystring and Decrypting it in PHP

I have the following Encryption Classs in php define(ENCRYPTION_KEY,"abcdegef"); define(INITIALIZATION_VECTOR,mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_DES, MCRYPT_MODE_ECB), MCRYPT_RAND)); ...
3
votes
4answers
597 views

Passing constantly changing query strings PHP

I have a list of articles on my page, and I would like to be able to apply a myriad of sorts and filters to it by appending $_GET values to the URL: ...