09-13-2008, 11:47 PM
|
#10 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
Quote:
Originally Posted by sarmenhb
if im not using a form method such as post or get how would post or get even work?
|
GET and POST are not simply 'form methods' but varieties of HTTP Request Methods, as such forms aren't necessary to send such requests. Indeed, a normal page request like the one that brought you to this page will have been using a GET request and any query string arguments (if any) will be available in the superglobal $_GET array.
|
|
|
|