Hey all,
I have a while loop and in that I set some variable. I come to a problem when i try to do this:
$num=1;
$i=1;
while ($i<$num)
{
$photo$i = 20;
$i++
}
Its the $photo$i = 20; that I need help with, because I want to make a variable out of two already set variables.