> > very difficult in my code... i will have a look if i can change the
code.
> > isn't it possible without a "while" ?
>
> How did you plan on *retrieving* the data if not through a loop? If you
> plan on actually getting all the data, you'll have to loop through all the
> rows I think. Maybe you could post a code fragment?
here is the old code... based ob a file
my @data=split(/\r?\n/,$part[2]);
if ($data[2] ne '') {
my @datas=split(';',$data[2]);
print "Counted Items ";print $#datas+1;print" Items<BR>\n";
print "Inside: ";foreach (sort @datas) {print "Item: $_ ";} print "<BR>\n";
}
Alex