i know it sounds weird, just something i've been trying to do, will explain some more:
if for example i have array named $my_array, with for example:
$my_array['field1'] = "1";
$my_array['field2'] = "2";
& so on
i'm looking for smart way of making this as if i wrote:
$field1 = "1";
$field2 = "2";
so assuming i have this array that is populated via FOR loop, i can later on pass this array as seperate vars.
i'm aiming to do something like WetWired did in his activity hack code (
http://www.vbulletin.org/forum/showthread.php?t=93831), where in there he used an array named $output in the postbit_start hook, and somehow got it to be declared as seprate digits vars on the template itself.
i've tried to use php eval() function, but that didn't go so well.
if anyone got some idea on & can give few pointers will be appreciated.
thx.