passing data via GET method (as opposed to POST). arranged in [key]=[value] paings.
separated by &, started with ?
so, [url]?[var1]=[var1_value]&[var2]=[var2_value]
must only be valid url chars, no spaces. you use php's urlencode($string) to encode a string
the %20 you'll notice is a space. url-encoding starts with a %, and the next two digits are the ascii character representation.
in php, the vars are set in the
$HTTP_GET_VARS['var1'], $HTTP_GET_VARS['var2'] or, just as $var1, $var2
the receiving script/page interprets the variables as necessary.
there is a max length to the url, and they can be seen in the person's history, so sensitive data should be passed with POST..
there's your little tutorial 🙂
blake