Help for this page

Select Code to Download


  1. or download this
    while (my @row = $sth->fetchrow_array()) {
        s!$term!"<i>$term</i>"! for @row;
        # ...
    }
    
  2. or download this
    my $rx = qr/\Q$term/;
    while (my @row = $sth->fetchrow_array()) {
        s!$rx!"<i>$term</i>"! for @row;
        # ...
    }