Predefined variable

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • java.inet@gmail.com

    #1

    Predefined variable

    hi....

    what is PHP_SELF when will it is used also tell me REQUEST_METHOD

  • flamer die.spam@hotmail.com

    #2
    Re: Predefined variable

    On May 16, 4:42 pm, java.i...@gmail .com wrote:
    hi....
    >
    what is PHP_SELF when will it is used also tell me REQUEST_METHOD
    http://nz.php.net/reserved.variables :

    'PHP_SELF'

    The filename of the currently executing script, relative to the
    document root. For instance, $_SERVER['PHP_SELF'] in a script at the
    address http://example.com/test.php/foo.bar would be /test.php/
    foo.bar. The __FILE__ constant contains the full path and filename of
    the current (i.e. included) file.

    'REQUEST_METHOD '

    Which request method was used to access the page; i.e. 'GET',
    'HEAD', 'POST', 'PUT'.

    Flamer.


    Comment

    Working...