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?

parseha
  • 170
  • 1
  • 8

1 Answers1

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'];
aya
  • 1,577
  • 4
  • 29
  • 59