- or download this
@dates = `mysqlshow --password=\'xxxxxxx\' pzbg001`;
shift @dates;
...
$date =~ s/Tables//g;
$date =~ s/\+//g;
...
- or download this
@dates = map { /^\|\s+([\d_]+)\s+\|$/ } `mysqlshow --...`
- or download this
$query = "select $result from $date where inintf=$inint";
- or download this
# get the list of tables (table names are \d+_\d+_\d+):
my @dates = map { /^\|\s+([\d_]+)\s+\|$/ } `mysqlshow --...`
...
my $myimage = $mygraph->plot(\@data) or die $mygraph->error;
# and on to the web page...