You have already completed these exercises!
Do you want to take them again?
You completed the PHP Variable Scope Exercises from W3Schools.com
Share on:
Consider the following code:$name = 'Linus';function myTest() { $name = 'Tobias';}myTest();echo $name;What will be the output?
$name = 'Linus';function myTest() { $name = 'Tobias';}myTest();echo $name;