Skip to content

Instantly share code, notes, and snippets.

@MadaraUchiha
Created July 1, 2014 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MadaraUchiha/8bee98a9ad341f7c1335 to your computer and use it in GitHub Desktop.
Save MadaraUchiha/8bee98a9ad341f7c1335 to your computer and use it in GitHub Desktop.
Global Example
<?php
$variable = "This will be global!";
include "slave.php";
<?php
function whatever() {
global $variable;
echo $variable;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment