Fillin (hover over or click) the blanks to learn about HTTP, or create your own lines

+ Default method is GET or POST? GET
+ $_FILES is an associative superglobal array of items uploaded to the current script via the HTTP POST method.
+ Cookies are actually identified by the combination of their name, domain, and path, as opposed to only their name
+ Beside the name/value pair, a cookie may also contain an expiration date, a path, a domain name, and whether the cookie is intended only for encrypted connections.
+ The HTTP 301 status code means moved permanently
+ 302 HTTP status code means found (e.g. temporary redirect)
+ GET data is sent in the header part of a request to the server.
+ The POST method is not limited by the size of the URL for submitting name/value pairs.
+ The 8 HTTP request methods or "verbs" are HEAD, GET, POST, PUT, DELETE, TRACE, OPTIONS, CONNECT
+ idempotent means that multiple identical requests should have the same effect as a single request.
+ sessions are browser dependant


A Lefkon Development