Forum Moderators: coopster
So, the code below will obviously display "TEST 123"
$var = "TEST 123";function test($var) {
echo "$var";
}
test($var);
Now, this is what I would like to do and still display "TEST 123"
$var = "TEST 123";function test() {
echo "$var";
}
test();
Thanks!