Help for this page

Select Code to Download


  1. or download this
    if (substr($title,0,1) eq $layer) {
        # do something...
    }
    
  2. or download this
    if (lc(substr($title,0,1) eq lc($layer)) {
        # do something...
    }
    
  3. or download this
    my $title = $dbrow{Title};