Tag Archives: variables

PHP Variable Variables — what?

This is something that ASP does not have. — Variable Variables. It takes the content of a variable and use it as variable names. $a = ‘foo’; $$a = ‘bar’; the above statement is equivalent to: $foo = ‘bar’; Two … Continue reading

Posted in Uncategorized | Tagged , | Comments Off on PHP Variable Variables — what?

PHP Built-In Variables – PHP_SELF

The book I’m using to learn PHP is old… © 2001. It’s using commands from PHP 4.0.3. Thus, I’m finding some of the commands and examples in the book do not work, because the command format has changed or some … Continue reading

Posted in Uncategorized | Tagged , | Comments Off on PHP Built-In Variables – PHP_SELF