File: upload_form.html

package info (click to toggle)
postfixadmin 2.3.5-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,200 kB
  • sloc: php: 25,767; xml: 14,485; perl: 964; sh: 664; python: 169; makefile: 84
file content (11 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
<html>
    <head><title>Test of file upload</title></head>
    <body>
        <form enctype="multipart/form-data" action="upload_handler.php" method="post">
            <input type="hidden" name="MAX_FILE_SIZE" value="30000">
            <label>Content:<input id="c" type="text" name="content"></label><br>
            <label>Supplemental:<input id="s" type="text" name="supplemental"></label><br>
            <input id="g" type="submit" name="go" value="Go!">
        </form>
    </body>
</html>