1

I have url like this

  1. index.php?name=aya&age=29
  2. index.php?name:aya&age:29

I want get name and age from this url.
I think if i can get query string, perhaps i can render it.
How can do it?

0

1 Answer 1

3

first use $_SERVER['QUERY_STRING'] to get querystring from url and then get data from string via parse_str function.
code:

$str = $_SERVER['QUERY_STRING'];
$str = str_replace(":","=",$str);
parse_str($str, $get);
echo $get['name'];
echo $get['age'];
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.