/Example/test.html
HTML | 26 lines | 25 code | 1 blank | 0 comment | 0 complexity | 428dd80cc132b57014e7eb5cb702c729 MD5 | raw file
Possible License(s): Apache-2.0
- <html>
- <head><title>test page</title></head>
- <body>
- <br />
- POST test
- <form method="post" action="test.html">
- <input type="text" name="edit1" /><br />
- <input type="submit" />
- </form>
- <br />
- File Upload test
- <form method="post" action="upload" enctype="multipart/form-data">
- <input type="file" name="myfile" /><br />
- <input type="submit" />
- </form>
- <br />
- Multiple File Upload test
- <form method="post" action="upload2" enctype="multipart/form-data">
- <input type="file" name="myfile1" /><br />
- <input type="file" name="myfile2" /><br />
- <input type="text" name="edit1" /><br />
- <input type="submit" />
- </form>
- </body>
- </html>
-