Hi Patric,
while(@satz = $sth->fetchrow_array) { $tab[$i++] = @satz }
Da ich wenig Zeit habe (muss zu `nem GIG) fasse ich mich kurz:
Versuch mal $tab[$i++] = [@satz];
@tab enthält dann die @sätze als anonyme Arrays die man mit $tab[0]->[1] ansprechen kann.Gruß AlexBausW
gruesse,
while(@satz = $sth->fetchrow_array) { push @tab , [@satz]; }
ist auch ganz ganz nett.
klaus