[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Where does "MoveNext" belong to?


Patrix Diradja wrote:
while(!$rsnya->{EOF}){
    my $tab4l = $rsnya->fetchrow_array;
    print "\$tab4l: $tab4l \n";
    $rsnya->movenext;
}

Not a mod_perl question, per se, but try

while(my $tab4l = $rsnya->fetchrow_array) {
  print "\$tab4l: $tab4l\n";
}

Rob


Mail converted by mhonarc 2.6.15
This archive provided courtesy of JSW4.NET, Internet Hosting Services for Small Business.