Help for this page

Select Code to Download


  1. or download this
    open(DATA_IN, ">>$template_data") || print ...
    ...
       $_ = <DATA_IN>; # No, you can't do this on an output file
       ...
    
  2. or download this
    my $filename="test.txt";
    my $template_data = "unsecure/".$filename;
    ...
    print DATA_OUT;
    close DATA_OUT;
    __END__