Martin Zvarík wrote:
PHP Version 5.2.4<? $node = '[5][1][]'; ${'tpl'.$node} = 'some text'; print_r($tpl); // null ?> I really don't like to use the EVAL function, but do I have choice?? This sucks.
You should print the results that you are looking for!
Are you looking for something like this?
Array
(
[5] => Array
(
[1] => Array
(
[0] => some text
)
)
)
how is the $node string being created?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

