Help for this page

Select Code to Download


  1. or download this
    my $html = qq{<font face="Arial, Helvetica, sans-serif" size="2" color="red">};
  2. or download this
    my $html = qq*<font face="Arial, Helvetica, sans-serif" size="2" color="red">*;
  3. or download this
    sub _format_error {
      return qq{<font face="Arial, Helvetica, sans-serif" size="2" color="
    +red">$_[0]</font>};
    }
    my $login_blocked = format_error('Login Blocked please wait 3 minutes 
    +and try again');
    # ...etc...