Create global variables : GLOBALS « Language Basics « PHP
- PHP
- Language Basics
- GLOBALS
Create global variables
<?php
$somevar = 15;
function addit() {
GLOBAL $somevar;
$somevar++;
print "Somevar is $somevar";
}
addit();
?>
Related examples in the same category