Re: how to combine the results of two variables to echo another variable?



Sacs wrote:
>>>$fooboo = "$a" . "$b";
>>
>> Just do: $fooboo = $a . $b;
>>
> With just $fooboo = $a . $b; then $fooboo is set to "foobar" not "blah
> blah" as op wanted.

Sigh. I meant: why use the quotes, they're not needed! (and yes, then use
$$fooboo, just like in the code a few posts up).


--
Firefox Web Browser - Rediscover the web - http://getffox.com/
Thunderbird E-mail and Newsgroups - http://gettbird.com/
.



Relevant Pages