Forum Moderators: coopster
what you have there gives no actual output so I am not sure what output you are looking for.
if you wanted to assign values from an array called $value to vars in the form of $image0 to $image9 then you would need to do it this way
for ($i=0; $i <10; $i++) {
${'image' . $i} = $value[$y];
}