Advertisement
nikolaysimeonov

08.Print Html

Jun 12th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <title>08.Print Html</title>
  5.         <meta charset="utf8"/>
  6. </head>
  7. <body>
  8. <?php
  9. $hello = "<h1>Hello World</h1> <p>I love Software University</p>";
  10. echo strip_tags($hello, "<h1><p>");
  11. ?>
  12. </body>
  13. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement