Search
 
SCRIPT & CODE EXAMPLE
 

PHP

$_get and $_post in php

# $_ Variables are referred to as Superglobals

$GLOBALS  # Global Variables, think _G in lua
$_SERVER  # Miscellanous information, such as argv and argc!
$_GET     # Get URL Parameters
$_POST    # Variables passed via the POST method
$_FILES   # Files uploaded to the script
$_COOKIE  # HTTP Cookies
$_SESSION # Session Variables
$_REQUEST # Contains request info like $_GET, $_POST and $_COOKIE 
$_ENV     # Environment variables, just as youd expect
Comment

PREVIOUS NEXT
Code Example
Php :: create table laravel 
Php :: tinker faker 
Php :: string between two strings 
Php :: Change date format on view - laravel 
Php :: how to debug in wordpress 
Php :: get date to current week last or first day dates 
Php :: php functions parameters 
Php :: php get index of string 
Php :: mysql Cannot pass parameter 2 by reference 
Php :: drupal get node id from twig 
Php :: get admin url wordpress 
Php :: laravel get second last record 
Php :: laravel make factory 
Php :: faker instance in tinker 
Php :: move img to public folder in laravel 
Php :: wordpress enqueue if shortcode 
Php :: PHP trim — Strip whitespace (or other characters) from the beginning and end of a string 
Php :: substr php 
Php :: jquery is less than or equal to 
Php :: remove all items of an array except the last 5 in php 
Php :: naming the routes in laravel 
Php :: laravel import csv to database 
Php :: middleware command in laravel 
Php :: preg_split in php 
Php :: laravel pdf export 
Php :: php dirname 
Php :: composer create project laravel with version 
Php :: php send post request 
Php :: woocommerce my account php code wordpress 
Php :: laravel valet subdomain 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =