code_junkie

reducing duplication in static HTML pages

Nov 14th, 2011
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <html>
  2. <head></head>
  3. <body>
  4. <h1>My Common Header</h1>
  5. </body>
  6. </html>
  7.  
  8. <h1>My Common Header</h1>
  9.  
  10. <h1>My Common Header</h1>
  11.  
  12. <html>
  13. <head></head>
  14. <body>
  15. <?php include('header.php'); ?>
  16. </body>
  17. </html>
  18.  
  19. <!--#include virtual="file.inc"-->
  20.  
  21. <html>
  22. <head></head>
  23. <body>
  24. <? include 'header.php'; ?>
  25. </body>
  26. </html>
  27.  
  28. <h1>My Common Header</h1>
Add Comment
Please, Sign In to add comment