No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.html 800B

12345678910111213141516171819202122
  1. <html>
  2. <head></head>
  3. <body>
  4. URL arg : id = {{ id }}<br />
  5. GET values :<br />
  6. <ul>
  7. {% for argument_name, argument_value in params.items() %}
  8. <li>{{argument_name}} = {{ argument_value }}</li>
  9. {% endfor %}
  10. </ul>
  11. <form action="http://localhost:9090/admin?r=1&rand[]=7&rand[]=5" method="POST" enctype="multipart/form-data">
  12. <input type="text" name="re[]" value="3"><br />
  13. <input type="text" name="re[]" value="1"><br />
  14. <input type="text" name="val" value="8"><br />
  15. <input type="file" name="myfile1"><br />
  16. <input type="file" name="myfile2"><br />
  17. <input type="file" name="myfiles[]"><br />
  18. <input type="file" name="myfiles[]"><br />
  19. <input type="submit" value="tester"><br />
  20. </form>
  21. </body>
  22. </html>