November 2024 M T W T F S S « Jan 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 -
Recent Posts
Archives
Meta
Tags
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
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