(you get the idea) I’m trying to use http_build_query($serials, ‘serial’, ‘&’); but it adds the numeric index to the prefix ‘serial’. Any idea how to remove that numeric index?
7 Answers 7
Well you can’t really have the same GET parameter in the string, After all if you try to access that variable server side, what would you use?
$_GET[‘serial’] — But which serial would it get?
If you really want to get a list of serials, Simply turn the array into a string, save it as an array and there you go. for example :
$serials = «string of serials, delimited by &» ; Then you can use the http build query.
Yes, But that means your node.JS API is a bit wrong, This isn’t a correct way of passing arguments in as GET parameters.
$get = "localhost/get?serial=" . $serials[0]; unset( $serials[0] ); foreach( $serials AS serial ) < $get . mt24">
)" data-controller="se-share-sheet" data-se-share-sheet-title="Share a link to this answer" data-se-share-sheet-subtitle="" data-se-share-sheet-post-type="answer" data-se-share-sheet-social="facebook twitter devto" data-se-share-sheet-location="2" data-se-share-sheet-license-url="https%3a%2f%2fcreativecommons.org%2flicenses%2fby-sa%2f3.0%2f" data-se-share-sheet-license-name="CC BY-SA 3.0" data-s-popover-placement="bottom-start">Share
That will get you something like localhost/get??serial=1?serial=2?serial=3?serial=4. .
– Mario
Sep 20, 2014 at 8:49
Thanks man! I've made few adjustments but you point me to the right direction :)
– ranslobo
Sep 20, 2014 at 9:02
Isnt that an inefficient solution. A simple implode would have worked. And moreover having same get variable isn't going to solve any purpose so it should not be encouraged
– nitigyan
Sep 20, 2014 at 10:43
Add a comment|
2
Just as an FYI, PHP doesn't handle multiple GET variables with the same name natively. You will have to implement something fairly custom. If you are wanting to create a query string with multiple serial numbers, use a delimiter like _ or -.
And then finally, if you need to process it somewhere, just access it thru $_GET['serial'];
$serials = $_GET['serial']; // this will now hold an array of serials
@BayssMekanique yes this is quite possible, instead of naming each individual data with other names, they could be gathered with the same name, so that when you access that query name, they will hold the list of values that you set
)" data-controller="se-share-sheet" data-se-share-sheet-title="Share a link to this answer" data-se-share-sheet-subtitle="" data-se-share-sheet-post-type="answer" data-se-share-sheet-social="facebook twitter devto" data-se-share-sheet-location="2" data-se-share-sheet-license-url="https%3a%2f%2fcreativecommons.org%2flicenses%2fby-sa%2f3.0%2f" data-se-share-sheet-license-name="CC BY-SA 3.0" data-s-popover-placement="bottom-start">Share
)" title="">Improve this answer
answered Sep 20, 2014 at 9:07
GarimaGarima
17466 bronze badges
Add a comment |
0
Having the same GET parameter will not work this way. You will need to use an array in the get parameter:
PHP includes the http_build_query() method for creating URL encoded query string. This method is available only on PHP 5 and above versions. In this snippet, you will learn how to pass an array in URL query string using PHP.
The syntax of http_build_query() will look as follows:
In this section, we are going to use $vars array for generating the URL query string. The $vars array includes the data of search keyword, as well as the page number.
Let’s see an example where this array is passed to the http_build_query() method for generating a query string:
Passing a Multidimensional Array within http_build_query()
In this section, we will consider $vars as a multidimensional array with employee data. Once passing through the http_build_query() method, it will return a complex url query string.
The query string term is considered a part of Uniform Resource Locator (URL). It is in the form of a series of key-value pairs. Generally, it is used for creating a typical url or getting data from URL.
So, you can use the query string for different purposes such as search keywords, url building, specific web page tracking, and many more.
How to pass an array in a URL query string using PHP
In this article, you will learn how to pass an array from one page to another in a URL query string using PHP.
You will learn not only how to pass a single array, but also learn to pass indexed and multidimensional arrays to an URL query string using PHP.
The term 'Query String' is a part of a Uniform Resource Locator(URL). This is in the form of a series of key-value pairs and is called as url parameter. This is basically used to build a typical url or to get data from url. For example-
In the above url, 'name=Smith&dept=it&role=developer&exp=5' is the query string, having multiple parameters. The parameters are separated by '&' and within each pair, the field name and value are separated by an equal sign(=).
The query string is used for many purposes, like the form get method, which takes input field values in the url query string, search keywords, particular web page tracking, url building, and so on.
In HTML, you have observed how the form input name with value is passed in a URL query string if the form method is post. But, this generates only a static query string. To build query strings dynamically, methods are provided by almost all popular programming languages. In this article, you will learn how to pass an array variables in a URL query string using PHP.
PHP pass an array in a URL query string using http_build_query() function
PHP provides the http_build_query() method to generate URL-encoded query string. This is available with PHP 5 and later versions. The http_build_query() function converts an array to its equivalent URL-encoded query string.
$query- It is an associative array or indexed array containing parameters. This can be a one-dimensional array or a multidimensional array. $numeric_prefix- A numeric prefix is provided if numeric indices are used in the base array. $separator- This overrides the default parameter separator. $encoded_type- This is the query string encoding type, like- PHP_QUERY_RFC1738, PHP_QUERY_RFC3986.
Pass simple array in http_build_query()
In the below example, we have used the $vars array to create the URL query string. The $vars array contains data on search keywords and page numbers. In the next line, we pass this array to the http_build_query() method to generate a query string.
Here, the '$vars' is a multidimensional array containing employee data. This is returned by the http_build_query() method as a complex url query string.
PHP pass an array in a URL query string using serialize() and urlencode() functions
We can also use the urlencode() function with the serialize() function to create an URL-encoded string. In the given example, first we have converted the array into its byte stream representation, which is a string using the serialize() function. And then, we have created an URL-encoded string of that byte stream.