Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. $e = $_GET['e'];
  6. $m = $_GET['m'];
  7.  
  8.  
  9. ?>
  10.  
  11.  
  12. <html>
  13. <head>
  14. </head>
  15. <body>
  16. <h1><?=$e ? 'ERROR' : 'SUCCESS'; ?></h1>
  17. <p><?=$m; ?></p>
  18. <?php
  19. if($e)
  20. {
  21. ?>
  22. <div>my error shown here</div>
  23.  
  24. <?php } ?>
  25. </body>
  26. </html>
Add Comment
Please, Sign In to add comment