showtext.php 832 B

1234567891011121314151617181920212223242526
  1. <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; utf-8">
  4. <link rel="stylesheet" type="text/css" href="style.css" />
  5. <title>Mundus Crassus</title>
  6. <?php
  7. header('Content-Type: text/html; charset=utf-8');
  8. ?>
  9. </head>
  10. <body>
  11. <form action="showtext.php" method="get">
  12. <?php
  13. $text = $_GET["text"];
  14. $text = str_replace("Ɛ", "{", $text);
  15. $text = str_replace("Ƒ", "}", $text);
  16. $text = str_replace("ƒ", "[", $text);
  17. $text = str_replace("Ɠ", "]", $text);
  18. $text = str_replace("Ɣ", "(", $text);
  19. $text = str_replace("ƕ", ")", $text);
  20. $text = str_replace("Ɩ", "'", $text);
  21. echo $text;
  22. ?>
  23. </body>
  24. </html>