[PHP] foreach loop to set variables

2008-04-25 Thread jamest
I am passing an array to a class which I want to take the array data and create some variables from the array's keys and values. So I want to create (in this case 21) new variables that I want to create in the foreach but with no success. foreach ($formdata as $key = $value) { echo $key

Re: [PHP] foreach loop to set variables

2008-04-25 Thread jamest
Thats perfect. I didn't even know about this. Stut wrote: $$key = $value; They're called variable variables - search the manual for that term for more info. -Stut -- http://stut.net/ -- View this message in context: