PTM Logo Version 0.5.1 Beta
Home    SVN    Downloads    Documentation    Forum    Contact
This Site is 100%
Powered by PTM

SourceForge.net Logo
Documentation
I   Index
II   GNU GPL
III   Description
IV   Installation
V   Language Overview
VI   Tags
VII   Variables
  $_BASE
  $_CGI
  %_COOKIES
  $_DEFAULT_PTM_FILE
  $_DOCUMENT_ROOT
  %_GET
  $_HEADER
  @_KEYWORDS
  $_PATH
  %_POST
  @_PTM
  $_PTM_POS
  $_PTM_PREPROCESS
  @_REQUIRE
  $_SCRIPT
  %_SERVER
  %_SESSION
  %_SET_COOKIES
  $_SYNTAX_...
  $_URL
  $_USE_SECURE_SCRIPT_PASSING
  $_VERSION
VIII   Functions
IX   Modules
Documentation
View / Download this file.
--------------
$_URL VARIABLE
--------------

  -----------
  DESCRIPTION
  -----------

    The $_URL variable stores the full requested URL (before any potential
    redirection), not including any "?name=value" URL [GET] additions. This is
    simply the URL requested by the user. To retrieve any "?..." additions to
    the URL, you can reference $_SERVER{'QUERY_STRING'} or the %_GET and
    @_KEYWORDS variables. To reference the actual URL path AFTER any potential
    URL redirection has occured, see documentation on the $_BASE variable.

  --------------
  USAGE EXAMPLES
  --------------

    -----------------------------------------
    Example 1: Displaying the URL to the User
    -----------------------------------------

      You requested this page at <?= $_URL ?>

  --------
  SEE ALSO
  --------

    TAGS

      DISPLAY

    VARIABLES

      $_DOCUMENT_ROOT, $_BASE, $_PATH, $_SCRIPT, %_SERVER
Home    SVN    Downloads    Documentation    Forum    Contact