I’m trying to use dynamic variable names (I’m not sure what they’re actually called) But pretty much like this: for($i=0; $i<=2; $i++) { $("file" . $i) = file($filelist[$i]); }...
In PHP you can do amazing/horrendous things like this: $a = 1; $b = 2; $c = 3; $name="a"; echo $$name; // prints 1 Is there any way of...