Posted by "Scott Fletcher" on 09/27/05 22:55
Wow, that seem to work... Should have use "$suffix" instead of "$prefix" to
make it less confusing.
"Silvio Porcellana" <sporc@tin.it> wrote in message
news:43398984.9020505@tin.it...
> Scott Fletcher wrote:
>
> >What I want this to work instead is
> >[code]
> > $array = array();
> >
> > $array['col1']['col2'] = "Test #1";
> > $array['col3']['col2'] = "Test #2";
> >
> > $prefix = "['col3']['col2']";
> >
> > echo $array.$prefix; //Spitted out result as "Test #2"...
> >[/code]
> >
> >
> Try something like this:
> <code>
> $var = "\$array".$prefix;
> eval("echo $var;");
> </code>
>
> HTH, cheers
> Silvio
[Back to original message]
|