Question

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

Was it helpful?

Solution

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.

OTHER TIPS

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
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top