Re: [PHP] Varible Varibles

2002-06-13 Thread Jason Wong
On Friday 14 June 2002 00:38, John Holmes wrote: > I think you're missing the point of variable variables. Quite :-) > I kind of consider variable variables the poor mans array. Most any > solution you think of with variable variables could be better solved by > using arrays. Actually variable

RE: [PHP] Varible Varibles

2002-06-13 Thread Pushkar Pradhan
mans array. Most any > solution you think of with variable variables could be better solved by > using arrays. > > ---John Holmes... > > > -Original Message- > > From: Peter [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, June 12, 2002 10:42 PM > >

RE: [PHP] Varible Varibles

2002-06-13 Thread John Holmes
ou think of with variable variables could be better solved by using arrays. ---John Holmes... > -Original Message- > From: Peter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 12, 2002 10:42 PM > To: Php > Subject: [PHP] Varible Varibles > > howdy, > I'm just c

RE: [PHP] Varible Varibles

2002-06-12 Thread Peter
2002 12:44 PM To: 'Peter'; Php Subject: RE: [PHP] Varible Varibles well, the first method is the same as saying $a = "foo"; $foo = "bar"; echo "$a $foo"; whereas the second method is appending "bar" to $a (thus making it "foobar") In

RE: [PHP] Varible Varibles

2002-06-12 Thread Martin Towell
Message- From: Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 12:42 PM To: Php Subject: [PHP] Varible Varibles howdy, I'm just curious here about varible varibles ... I know that you can, well it's documented that you can, do the following which will produce foo bar n

[PHP] Varible Varibles

2002-06-12 Thread Peter
howdy, I'm just curious here about varible varibles ... I know that you can, well it's documented that you can, do the following which will produce foo bar now what I am curious about is, how much of a difference does that really make when you compare it to.. Cheers Peter "the only dum