What do a question mark (?) and an ampersand (&) mean in a URL?

Arnar Freyr

I saw a link like this:

https://www.google.com/recaptcha/api/siteverify?secret=YOUR_SITE_KEY&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);

I know that it's setting the secret variable to YOUR_SITE_KEY and response to response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR'] but, I'm not sure what those symbols means that is, the ? and & in the query string.

Quentin

There isn't really anything there that is particular to PHP.

The ? indicates the start of the query string. Within the query string you have a set of key=value pairs, each separated by an &.

PHP will populate $_GET with this data. It is part of the URL standard and any server side language will have a parser that provides similar functionality.

This is also the default data format browsers generate when submitting a form.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What does question mark mean?

From Dev

What does question mark equals mean in CoffeeScript?

From Dev

What does this question mark mean in Flow: "?() => void"

From Dev

What does the question mark in "Decimal?" mean?

From Dev

XML what does that question mark mean

From Dev

What does the triple question mark mean in scala?

From Dev

What does the question mark in java mean?

From Dev

What does .php question mark = mean?

From Dev

What does the question mark in terminal command mean?

From Dev

What does the "?" (question mark) mean in javascript?

From Dev

What does this two question mark mean?

From Dev

What does the question mark in terminal command mean?

From Dev

What does hypothesis with operator with question mark mean

From Dev

what is the meaning of ?(question mark) in url string?

From Java

What does double question mark (??) operator mean in PHP

From Java

What does question mark and dot operator ?. mean in C# 6.0?

From Dev

What does "type" mean and is there is a special use for a question mark in ECMA 6?

From Dev

What does the question mark in member access mean in C#?

From Dev

What does the question mark mean in a type parameter bound?

From Dev

What does the question mark icon by a file name mean in Aptana?

From Dev

What does this ampersand mean in C?

From Dev

What is the mean of the ampersand symbol(&) in this sentence?

From Dev

What is the mean of the ampersand symbol(&) in this sentence?

From Dev

url with question mark

From Dev

What does the question mark do in an Angular isolate scope binding?

From Java

What does the ampersand (&) mean in a TypeScript type definition?

From Java

What does &. (ampersand dot) mean in Ruby?

From Dev

What does ampersand mean in a selector name?

From Dev

What does |& (vertical bar, ampersand) mean in bash?

Related Related

  1. 1

    What does question mark mean?

  2. 2

    What does question mark equals mean in CoffeeScript?

  3. 3

    What does this question mark mean in Flow: "?() => void"

  4. 4

    What does the question mark in "Decimal?" mean?

  5. 5

    XML what does that question mark mean

  6. 6

    What does the triple question mark mean in scala?

  7. 7

    What does the question mark in java mean?

  8. 8

    What does .php question mark = mean?

  9. 9

    What does the question mark in terminal command mean?

  10. 10

    What does the "?" (question mark) mean in javascript?

  11. 11

    What does this two question mark mean?

  12. 12

    What does the question mark in terminal command mean?

  13. 13

    What does hypothesis with operator with question mark mean

  14. 14

    what is the meaning of ?(question mark) in url string?

  15. 15

    What does double question mark (??) operator mean in PHP

  16. 16

    What does question mark and dot operator ?. mean in C# 6.0?

  17. 17

    What does "type" mean and is there is a special use for a question mark in ECMA 6?

  18. 18

    What does the question mark in member access mean in C#?

  19. 19

    What does the question mark mean in a type parameter bound?

  20. 20

    What does the question mark icon by a file name mean in Aptana?

  21. 21

    What does this ampersand mean in C?

  22. 22

    What is the mean of the ampersand symbol(&) in this sentence?

  23. 23

    What is the mean of the ampersand symbol(&) in this sentence?

  24. 24

    url with question mark

  25. 25

    What does the question mark do in an Angular isolate scope binding?

  26. 26

    What does the ampersand (&) mean in a TypeScript type definition?

  27. 27

    What does &. (ampersand dot) mean in Ruby?

  28. 28

    What does ampersand mean in a selector name?

  29. 29

    What does |& (vertical bar, ampersand) mean in bash?

HotTag

Archive