Tutorials Details

How to learn PHP Supper global variable

Publish by Sifur Rahaman March 18, 2021, 1:51 pm

FHow-to-learn-PHP-Supper-global-variable
Description:

Many more super global variable is available. Super global variable is a PHP building function. If you want to use this function any PHP page and collect the hidden user data like- IP Address, Browser Information etc. and insert this data in your database. Some important and most usable super global variable example is below:
$_REQUEST: PHP $_REQUEST is a PHP super global variable. This variable use only collect data after submitted HTML user form. When a user fill-up all input field and click the submit button then html form active the action attribute and transfer the form data as per direction, this time use this $_REQUEST super global variable.
$_POST: PHP $_POST is a PHP super global variable. This variable use only collect and display data after submitted html user form with form method = "POST". When a user fill-up all input field and click the submit button then html input field pass this field value via POST method, this time use this $_POST super global variable. Mainly $_REQUEST variable and $_POST variable working as like same.
$_GET: PHP $_GET is a PHP super global variable. This variable use only collect data after submitted html user form with form method GET. GET and POST method work is same. When a user fill-up all input field and click the submit button then html input field pass this field value via GET method, this time use this $_GET super global variable.

Source Code:

Free PHP Tutorials: How to develop Frontend and Backend website development in PHP for beginning to advance lebel?

1. What is PHP and Why You Should Learn PHP or learn Frontend and backend web development?

2. How to Install PHP Version 7 or Local Server like - Wamp / Xampp with example?

3. How to Display or run first PHP Code?

4. How to Learn PHP Variables with example?

5. How to Sum any PHP field like column or cell?

6. How to Use PHP echo and print statement?

7. How to Learn PHP Data Types (String Data Type)?

8. How to Learn PHP Data Types (Integer Data Type)?

9. How to Learn PHP Data Types (Float Data Type)?

10. How to Learn PHP Data Types (Boolean Data Type)?

11. How to Learn PHP Data Types (Array Data Type)?

12. How to Learn PHP Data Types (Object Data Type)?

13. How to Learn PHP Operators For Frontend and Backend Development?

14. How to check PHP conditions use If, Else and Elseif statements for a expert frontend and backend depeloper?

15. How to learn PHP Loop for a expert frontend and backend depeloper?

16. How to learn PHP Functions for a expert frontend and backend depeloper?

17. How to learn PHP Arrays for a expert frontend and backend depeloper?

18. How to learn PHP Supper global variable

19. How to learn PHP RegEx for a expert frontend and backend depeloper?

20. How to Learn PHP Forms Validation For Frontend and Backend Development?

21. How to learn PHP MysQl Database for a expert frontend and backend depeloper?

22. How to learn PHP Database Connection for a expert frontend and backend depeloper?

23. How to Create PHP Database Class Database Class for Database Connection into MysQl DB?

24. How to Create a config.php file for MySql Database?

25. How to Create Dynamic PHP Session Class for a Secure frontend and backend depeloper?

26. How to Learn PHP MySql Select Query For Frontend and Backend Development?

27. How to Learn PHP MySql Insert Query and store data into Database For Frontend and Backend Development?

28. How to Learn PHP MySql Update Query For Frontend and Backend Development?

29. How to Learn PHP MySql Delete Query For Frontend and Backend Development?

30. How to insert PHP MySql Upload Image / file ?

31. How to send Email in live server?

32. How to upload image with file validations like extension (jpg, jpeg, png, gif, webp) and file size

33. How to create "JOIN QUERY" for display multiple database tables data in a single place?

34. How to count PHP notifications and display in the backend?