input.html 460 B

1234567891011121314151617181920
  1. <html>
  2. <body>
  3. <form name="form1" method="post" target="output" action="output.php?saving=1">
  4. Write your program here:
  5. <br>
  6. <textarea name="data" cols="80" rows="10">
  7. </textarea>
  8. <br><br><br>
  9. Standard input: <input type="text" name="stdin">
  10. <br><br>
  11. Command line arguments: <input type="text" name="args">
  12. <br><br>
  13. <input type="submit" value="Run">
  14. </form>
  15. <br>
  16. <a href="textinput.php" target="output">Click here to submit text file input</a>
  17. </body>
  18. </html>