in reply to Re: Curious issue with Graphing Arrays
in thread Curious issue with Graphing Arrays

Thanks for the help, that certainly fixed the issue.

The next issue that I have is in attempting to name the variable dynamically, using a counter. So, instead of coding @name1, @name2 etc, we'd instead code something like this:

$x = 1; @name[$x] = (stuff); $x++
This would loop through several times to assign outputs from dynamic SQL statements to the dynamically named arrays, which are then output to a graph. Any idea on what the syntax would be to name that?