I more so mean. Like I define the variables
$name
$age
$height
$weight
$etc
but they are all usable within a function without using global.
$name
$age
$height
$weight
$etc
function this() {
echo $name;
}
this(); // outs name variable
?
thanks for your time
- me