Greetings, Id like to create incrimented variables but am having trouble doing so:
loop
{
$varname_$varincriment = $value;
$varincriment++;
}
I keep getting an error on the line with the incriment after the variable, though it seems to work fine when i remove the incriment and just use a static variable name. Is there a specific way to do this with 2 variables?
Wow, hope that made sense 🙂