---
title: "Name of the PHP Global Variables - Superglobals ?"  
description: "Name of the PHP Global Variables - Superglobals ?"  
author: "Prakash nidhi Verma"  
published: 2018-07-19  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/23472/name-of-the-php-global-variables-superglobals  
category: "php"  
tags: ["web development", "php"]  
reading_time: 1 minute  

---

# Name of the PHP Global Variables - Superglobals ?

PHP Global Variables(Superglobals) :

superglobals in php is a predefined variables which means they are always accessible of scope and we can access them from any function class without any other progress.

The PHP superglobal variables are:

```
$GLOBALS $_SERVER
$_REQUEST
$_POST
$_GET
$_FILES
$_ENV
$_COOKIE
$_SESSION
```

## Answers

### Answer by Prakash nidhi Verma

PHP Global Variables(Superglobals) :

superglobals in php is a predefined variables which means they are always accessible of scope and we can access them from any function class without any other progress.

The PHP superglobal variables are:

```
$GLOBALS $_SERVER
$_REQUEST
$_POST
$_GET
$_FILES
$_ENV
$_COOKIE
$_SESSION
```


---

Original Source: https://www.mindstick.com/interview/23472/name-of-the-php-global-variables-superglobals

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
