Files
unisa_tsw_2014_2015/php2.php

19 lines
103 B
PHP

<?php
$a = "mario";
global $a;
test();
function test (){
global $a;
print $a;
}
echo $a;
?>