Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I read value in get parameter

http://www.localhost/type=Cars,-Vans-&-SUVs

When I am trying to read type value from get URL I am not able to read from &.

Please suggest how to read type variable value in Get method.

share|improve this question
Unfortunately it seems as if the link in your post is not correct, please take another look at your post and add the correct link. – josephthomas Jan 22 '12 at 19:54

closed as not a real question by skaffman, casperOne Jan 22 '12 at 20:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

the problem is , that & is a delimiter between GET-Keys.

You have to urlencode the value of the "type" or any other key in your URL:

Cars,-Vans-&-SUVs

is urlencoded:

Cars%2C-Vans-%26-SUVs

if you try to get the value, only urldecode the value.

In PHP the functions are urlencode() and urldecode().

share|improve this answer

You should have a ? sign before the GET parameters so if you want your type to be cars, the link should be:

http://www.localhost/?type=cars

If you need more than one parameter you should add it with an & sign

http://www.localhost/?type=cars&wheels=4

From your php file you then read the variables with $_GET[]

$type = $_GET['type'];
$wheels = $_GET['wheels'];

If you want all three types inside type parameter you should use

http://www.localhost/?type=Cars,-Vans-%26-SUVs

Update:

With:

?type=Cars,-Vans-%26-SUVs

the result array is:

[type] => Cars,-Vans-&-SUVs
share|improve this answer
but if I want to read value of type as car&wheels – user1163838 Jan 22 '12 at 20:02
then make it ?type=car%26wheels where %26 represents the & sign but does not go as delimiter for a different GET parameter – Kypros Jan 22 '12 at 20:07
%26 not working... – user1163838 Jan 22 '12 at 20:11
are you using this in a form or just typing it? – Kypros Jan 22 '12 at 20:15
I am using this in url only – user1163838 Jan 22 '12 at 20:17
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.