Help for this page

Select Code to Download


  1. or download this
    while (my $row = $sth->fetchrow_hashref) {
     push(@profiles,$row);
    }
    
  2. or download this
    foreach (@profiles) {
     print "$_->{user_id}\n";
    }
    
  3. or download this
    @keys = keys %row;
    for (@keys){
    
  4. or download this
    foreach (keys %row) {