Help for this page

Select Code to Download


  1. or download this
    foreach(keys $config->acls) {
        print "$_";
    }
    
  2. or download this
    while(my ($name, $value) = each $config->acls()) {
        print "$name<br>$value<br>";
    }