recebe-erros.php 792 B

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=yes, initial-scale=1.0, maximum-scale=1.0, minimum-scale=0.5">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Error</title>
  9. </head>
  10. <body>
  11. <?php
  12. $recebe = $_GET['q'];// recebe o código de erro
  13. // já que só eu sei essa página
  14. http_response_code($recebe);// Envia os dados no cabeçalho da resposta, suporte desde o PHP5
  15. //echo "<h1 style='text-align:center'>Erro $recebe</h1>";
  16. //mostra o meme relacionado ao erro
  17. //echo "<img src=\"https://jul10l1r4.github.io/HTTP_-_Resposta/img/$recebe\">";
  18. echo "
  19. <div style=\"text-align: center;\">
  20. <img src=\"/errors/escudo$recebe.png\">
  21. </div>
  22. ";
  23. ?>
  24. </body>
  25. </html>