<?php
$x = 5;
$y = 7;
function add(){
global $x, $y; //can't assign any value when declaring global @ same line
return $x + $y;
}
echo add();
echo '<br>';
echo $_SERVER['PHP_SELF']; //this will return the current page location
$x = 5;
$y = 7;
function add(){
global $x, $y; //can't assign any value when declaring global @ same line
return $x + $y;
}
echo add();
echo '<br>';
echo $_SERVER['PHP_SELF']; //this will return the current page location
No comments:
Post a Comment