|
ahh alright thanks for the explanation ;)
Now im having trouble getting the push method to work.. what it seems to be doing is posting the same result over and over again.
Here is my code up to now:
my @gals = $sth->fetchrow;
my @gals2 = $sth2->fetchrow;
push (@gals2, @gals);
my $counter = 0;
foreach (@gals2)
{
$counter++;
if ($counterhahahaha6)
{
print "</tr><tr>\n";
$counter=0;
}
else
{
print "\n";
}
}
No idea yet why its displaying the same result over and over
|