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.
|
How can I read value in get parameter
When I am trying to read Please suggest how to read type variable value in Get method. |
||||
|
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.
|
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:
is urlencoded:
if you try to get the value, only urldecode the value. In PHP the functions are |
|||
|
|
|
You should have a ? sign before the GET parameters so if you want your type to be cars, the link should be:
If you need more than one parameter you should add it with an & sign
From your php file you then read the variables with $_GET[]
If you want all three types inside type parameter you should use
Update:With:
the result array is:
|
|||||||||||
|