Help for this page

Select Code to Download


  1. or download this
        open (SES, ">$_sloc/$sessid.session");
        print SES "$bytes_read:$length:$percent";
        close (SES);
    
  2. or download this
        open (SES, ">$_sloc/$sessid.session") or die $!;
        print SES "$bytes_read:$length:$percent";
        close (SES);