Variables in PHP start with the $
sign, followed by the name of the variable.
1 2 3 4 |
<?php $txt = "Hello, World!"; $number = 123; ?> |
PHP Variables Scope
Global Scope
Variables declared outside functions have a global scope.
1 2 3 4 5 6 7 8 |
<?php $x = 5; function myTest() { global $x; echo $x; } ?> |