Guest User

Untitled

a guest
Feb 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $title = "<?php echo 7 + 5?>";
  3. echo $html = "<strong>html page from database</strong> <script>window.onload = function() {
  4. alert(123456789);
  5. };</script>");
  6.  
  7. echo htmlentities("<strong>html page from database</strong>");
  8.  
  9. echo html_entity_decode("<strong>html page from database</strong>");
  10.  
  11. require_once("view.php");
  12.  
  13. <!DOCTYPE html>
  14. <html lang="en">
  15. <head>
  16. <meta charset="UTF-8">
  17. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  18. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  19. <title><?= $title ?></title>
  20. </head>
  21. <body>
  22. <?= $html ?>
  23. </body>
Add Comment
Please, Sign In to add comment