Variable Scope : Variable Scope : Language Basics PHP Source Code


PHP Source Code » Language Basics » Variable Scope »

 

Variable Scope



<html>
<head>
<title>Variable Scope: A Variable Declared Within a Function Is Unavailable Outside the Function</title>
</head>
<body>
<?php

function test() {
     $testvariable = "this is a test variable";
}
print "test variable: $testvariable<br>";

?>
</body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Variable Scope