Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $contents = param("$a");
    
  2. or download this
    my @contents = split( /\n/, $contents );
    $contents = join( "<br>", @contents );
    
  3. or download this
    $contents =~ s/\n/<br>/g;