plaintext.php 156 B

123456789101112
  1. <?php
  2. //
  3. // Plaintext Test
  4. //
  5. // Set content type
  6. header("Content-type: text/plain");
  7. // Set content length
  8. header("Content-Length: 13");
  9. ?>
  10. Hello, World!