{"id":75661,"date":"2020-01-20T11:26:38","date_gmt":"2020-01-20T05:56:38","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?p=75661"},"modified":"2024-04-12T14:33:51","modified_gmt":"2024-04-12T09:03:51","slug":"variables-2","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/","title":{"rendered":"Variables"},"content":{"rendered":"<p>The SSI servlet currently implements the following variables:<\/p>\n<p>&nbsp;<\/p>\n<table>\n<thead>\n<tr>\n<td width=\"249\"><strong>Variable Name<\/strong><\/td>\n<td width=\"403\"><strong>Description<\/strong><\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td width=\"249\">AUTH_TYPE<\/td>\n<td width=\"403\">The type of authentication used for this user: BASIC, FORM, etc.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">CONTENT_LENGTH<\/td>\n<td width=\"403\">The length of the data (in bytes or the number of characters) passed from a form.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">CONTENT_TYPE<\/td>\n<td width=\"403\">The MIME type of the query data, such as &#8220;text\/html&#8221;.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">DATE_GMT<\/td>\n<td width=\"403\">Current date and time in GMT<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">DATE_LOCAL<\/td>\n<td width=\"403\">Current date and time in the local time zone<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">DOCUMENT_NAME<\/td>\n<td width=\"403\">The current file<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">DOCUMENT_URI<\/td>\n<td width=\"403\">Virtual path to the file<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">GATEWAY_INTERFACE<\/td>\n<td width=\"403\">The revision of the Common Gateway Interface that the server uses if enabled: &#8220;CGI\/1.1&#8221;.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_ACCEPT<\/td>\n<td width=\"403\">A list of the MIME types that the client can accept.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_ACCEPT_ENCODING<\/td>\n<td width=\"403\">A list of the compression types that the client can accept.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_ACCEPT_LANGUAGE<\/td>\n<td width=\"403\">A list of the languages that the client can accept.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_CONNECTION<\/td>\n<td width=\"403\">The way that the connection from the client is being managed: &#8220;Close&#8221; or &#8220;Keep-Alive&#8221;.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_HOST<\/td>\n<td width=\"403\">The web site that the client requested.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_REFERER<\/td>\n<td width=\"403\">The URL of the document that the client linked from.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">HTTP_USER_AGENT<\/td>\n<td width=\"403\">The browser the client is using to issue the request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">LAST_MODIFIED<\/td>\n<td width=\"403\">Last modification date and time for current file<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">PATH_INFO<\/td>\n<td width=\"403\">Extra path information passed to a servlet.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">PATH_TRANSLATED<\/td>\n<td width=\"403\">The translated version of the path given by the variable PATH_INFO.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">QUERY_STRING<\/td>\n<td width=\"403\">The query string that follows the &#8220;?&#8221; in the URL.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">QUERY_STRING_UNESCAPED<\/td>\n<td width=\"403\">Undecoded query string with all shell metacharacters escaped with &#8220;\\&#8221;<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REMOTE_ADDR<\/td>\n<td width=\"403\">The remote IP address of the user making the request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REMOTE_HOST<\/td>\n<td width=\"403\">The remote hostname of the user making the request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REMOTE_PORT<\/td>\n<td width=\"403\">The port number at remote IP address of the user making the request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REMOTE_USER<\/td>\n<td width=\"403\">The authenticated name of the user.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REQUEST_METHOD<\/td>\n<td width=\"403\">The method with which the information request was issued: &#8220;GET&#8221;, &#8220;POST&#8221; etc.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">REQUEST_URI<\/td>\n<td width=\"403\">The web page originally requested by the client.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SCRIPT_FILENAME<\/td>\n<td width=\"403\">The location of the current web page on the server.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SCRIPT_NAME<\/td>\n<td width=\"403\">The name of the web page.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SERVER_ADDR<\/td>\n<td width=\"403\">The server&#8217;s IP address.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SERVER_NAME<\/td>\n<td width=\"403\">The server&#8217;s hostname or IP address.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SERVER_PORT<\/td>\n<td width=\"403\">The port on which the server received the request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SERVER_PROTOCOL<\/td>\n<td width=\"403\">The protocol used by the server. E.g. &#8220;HTTP\/1.1&#8221;.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">SERVER_SOFTWARE<\/td>\n<td width=\"403\">The name and version of the server software that is answering the client request.<\/td>\n<\/tr>\n<tr>\n<td width=\"249\">UNIQUE_ID<\/td>\n<td width=\"403\">A token used to identify the current session if one has been established.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The SSI servlet currently implements the following variables: &nbsp; Variable Name Description AUTH_TYPE The type of authentication used for this user: BASIC, FORM, etc. CONTENT_LENGTH The length of the data (in bytes or the number of characters) passed from a form. CONTENT_TYPE The MIME type of the query data, such as &#8220;text\/html&#8221;. DATE_GMT Current date&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[8678],"tags":[1429],"class_list":["post-75661","page","type-page","status-publish","hentry","category-tomcat","tag-variables"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Variables - Tutorial<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Variables - Tutorial\" \/>\n<meta property=\"og:description\" content=\"The SSI servlet currently implements the following variables: &nbsp; Variable Name Description AUTH_TYPE The type of authentication used for this user: BASIC, FORM, etc. CONTENT_LENGTH The length of the data (in bytes or the number of characters) passed from a form. CONTENT_TYPE The MIME type of the query data, such as &#8220;text\/html&#8221;. DATE_GMT Current date...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T09:03:51+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/\",\"name\":\"Variables - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2020-01-20T05:56:38+00:00\",\"dateModified\":\"2024-04-12T09:03:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Variables\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Variables - Tutorial","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/","og_locale":"en_US","og_type":"article","og_title":"Variables - Tutorial","og_description":"The SSI servlet currently implements the following variables: &nbsp; Variable Name Description AUTH_TYPE The type of authentication used for this user: BASIC, FORM, etc. CONTENT_LENGTH The length of the data (in bytes or the number of characters) passed from a form. CONTENT_TYPE The MIME type of the query data, such as &#8220;text\/html&#8221;. DATE_GMT Current date...","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T09:03:51+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/","name":"Variables - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2020-01-20T05:56:38+00:00","dateModified":"2024-04-12T09:03:51+00:00","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/variables-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Variables"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/75661","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=75661"}],"version-history":[{"count":4,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/75661\/revisions"}],"predecessor-version":[{"id":76456,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/75661\/revisions\/76456"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=75661"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=75661"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=75661"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}