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:
Related in same category :
-
-
-
-
|