I'm so angry at the moment ....
Will take some time to fix stuff ...
Will take some time to fix stuff ...
BeJaunty.com is a personal blog where I share insights, news, and thoughts on topics that interest me—from technology and gaming to lifestyle and current events.
Starting php script:
echo 'Lets make a global function';
function createglobal() {
global $my_global;
$my_global = 10;
}
$my_global = 5;
echo "The value of \$my_global is '$my_global'
";
createglobal();
echo "The value of \$my_global is '$my_global'
";
ending php script