From da72cbda1c3c0e6a510c1879e6445a7d26648033 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Mon, 22 Apr 2002 22:26:10 +0000 Subject: [PATCH] fixes bug #16738 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79481 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/variables.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/variables.xml b/language/variables.xml index 1765db6373..521c55098e 100644 --- a/language/variables.xml +++ b/language/variables.xml @@ -1,5 +1,5 @@ - + Variables @@ -75,8 +75,8 @@ $t $foo = 'Bob'; // Assign the value 'Bob' to $foo $bar = &$foo; // Reference $foo via $bar. $bar = "My name is $bar"; // Alter $bar... -echo $foo; // $foo is altered too. echo $bar; +echo $foo; // $foo is altered too. ?> ]]>