[SOLVED]var from var
Posted: Fri Jul 23, 2004 1:16 pm
Hello,
I've got a variable, let's say
and I got
and I want to get $bof through $a. How can I do that ?
A this time I dont know if $a is 'bof' or 'super', because in fact I got
what I want is $$b[$i] but I dont know if it works puting $$ ?
Thanks
I've got a variable, let's say
Code: Select all
$a = 'bof';Code: Select all
$bof = 'mytext';and I want to get $bof through $a. How can I do that ?
Code: Select all
$$aCode: Select all
$b = array('bof', 'super',...);Thanks