hi!
I want to make variable names dynamically, e.g., make ten variables all with the prefix "i" followed by a dynamically assigned string (rows in an array). Any way of doing this?
obscurr
i've never used set dynamic variables before, but here's a good examples from php.net
http://www.php.net/manual/en/language.variables.variable.php
basically you would be doing something like $a = "my"; $$a = "values"; echo "$a ${$a}"; // prints "my values" and ${$a} is the same as $my
my interpretation could be off though. enjoy.