Help for this page

Select Code to Download


  1. or download this
    foreach $message (@logmessages)
    {
        LI(); 
        Strong($message);
    }
    
  2. or download this
    foreach $message (@logmessages)
    {
        LI(Strong($message));
    }
    
  3. or download this
    sub Strong {
        return "<STRONG>" . $_[0] . "</STRONG>";
    }
    
  4. or download this
    LI(Strong($message));