0

If i have a url structured like this:

<scheme> : <path> ? <key> = <parameter> & <otherkey> = <otherparamet>

is that a specific 'type' of URL? Im trying to figure out if this conforms to RFC 1738

Óscar López
  • 232,561
  • 37
  • 312
  • 386
Sean Danzeiser
  • 9,141
  • 12
  • 52
  • 90

2 Answers2

1

There are URL's formatted like this:

http://www.example.com/search.php?name=jeremy&state=oh

In this case, the ? starts the query and the & separates the parameters.

The parameters are URIComponentEncoded and may look a bit funny.

Jeremy J Starcher
  • 23,369
  • 6
  • 54
  • 74
0

I think you're leaving stuff out.... Using those delimiters you gave and in that order, I can construct an HTTP GET request to a specific port, supplying two named identifiers with data values.

http://some.domain.com:portnumber?key1=value1&key2=value2
paddy
  • 60,864
  • 6
  • 61
  • 103