|
$variableName // Simple variable $variableName[index] // Array variable |
I.e.: a variable must be preceeded by a dollar sign $ !!!
|
$a $A // Different variable name !! |
|
|
Example:
<?php // variable x does not exist yet $x = 1; // NOW variable x is defined ?> |
|
Example:
<?php /* ----------------------------------- variable x does not exist yet ----------------------------------- */ print "1. x = " . $x . "\n"; // Error $x = 1; // NOW variable x is defined print "2. x = " . $x . "\n"; // No error ?> |
Output:
PHP Notice: Undefined variable: x in .../undef-var.php on line 6 1. x = 2. x = 1 |
How to run the program:
|