Author name: admin

PHP

$_SERVER in PHP

What is $_SERVER in PHP $_SERVER is global variable  in PHP ,an array containing information such as headers, paths, and […]

PHP

$_GET in PHP

What is $_GET in PHP $_GET in PHP is used to pass variables like $_REQUEST . If we submitting an HTML form

PHP

$_POST in PHP

What is $_POST in PHP $_POST in PHP is used to pass variables like $_REQUEST . If we submitting an HTML form

PHP

$_REQUEST in PHP

$_REQUEST in PHP $_REQUEST in PHP  is used to collect data after submitting an HTML form. When a user submits

PHP

Super global variable in PHP

What is super global variable ? Super globals are built-in variables that are always available in all scopes.Many predefined variables in

PHP

Stack PHP

How to use Stack  in PHP array ? Stack implementation in PHP array,We know that stack is the method of adding

PHP

Arrays in PHP

What are Arrays in PHP ? In PHP array is the collection of elements with common identifiers (identifiers are used

PHP

PHP trim

What is trim  in PHP? trim() function in PHP  removes whitespace  from both sides of a string. trim() function also

PHP

PHP String Functions

What are String in PHP? A string is a Collection of characters Putting together. In PHP string can be a collection

Scroll to Top