plaintext.php 104 B

1234567
  1. <?php
  2. // Plaintext Test
  3. // Set content type
  4. header('Content-Type: text/plain');
  5. echo 'Hello, World!';