I have a problem with PHP. I'd like to create a new variable each time, my loop runs through. For example: If my loop runs for the first time, it should create a new variable called $loop1, if it runs the second time $loop2 with a different value, third loop - $loop3... Here is a reference of my code, any help is appreciated!
while ($x < count($lines)) {
$info
x++;
}