|
ok here's the simplet thing I ended up with up to now.
@array = $sth->fetchrow
@array2 = $sth2->fetchrow (my own)
Now i need some kind of form to add those arrays together like this:
my $thecount = 0;
while(my @results = (@array2+@array)) {
$thecount++;
if ($thecount % 6){
print "This is the end of the first row\n";
}
else {
print "These are results 1 to 5\n";
}
}
What doesnt seem to work is adding the two arrays together, doesn't seem to work with a comma either.
|