Help for this page

Select Code to Download


  1. or download this
    <form action="upload.cgi" enctype="multipart/form-data" method="POST">
    <input type="file" name="file">
    <input type="submit">
    </form>
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    open(TEMP,">temp.jpg");
    print TEMP $file;
    close(TEMP);