wcf.regNote.message
This post has been edited 1 times, last edit by "~Zero~" (Nov 28th 2005, 4:31pm)
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 |
$globaleVariable = "Hello World!";
output(); // hier kommt dein Fehler!
outputRichtig(); // hier funktionierts!
function output() {
echo $globaleVariable;
}
function outputRichtig() {
GLOBAL $globaleVariable;
echo $globaleVariable;
}
|
