$var1 = "text";
$var2 = '$var1';
4cho $$var2;
So it gives me "text".
My question is, is there a way of doing it with constant like this?
define("CONST", "text");
$test = "CONST";
echo $$test;
So it gives me "text".
Thanks in advance.
--
João Cândido de Souza Neto
It would if you didn't have typos and the wrong quotes in the above :)
> My question is, is there a way of doing it with constant like this?
>
> define("CONST", "text");
> $test = "CONST";
> echo $$test;
>
> So it gives me "text".
http://ca3.php.net/manual/en/function.constant.php
Cheers,
Rob.
--
E-Mail Disclaimer: Information contained in this message and any
attached documents is considered confidential and legally protected.
This message is intended solely for the addressee(s). Disclosure,
copying, and distribution are prohibited unless authorized.
Thanks and fogive me by my mistake. hehe
--
João Cândido de Souza Neto
"Robert Cummings" <rob...@interjinn.com> escreveu na mensagem
news:4C76743A...@interjinn.com...