View Single Post
Old 09-22-2004, 04:48 PM  
archael
Registered User
 
Join Date: Jun 2003
Posts: 51
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.
archael is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote