Advertisement
ferdinand

include_sample.php

Aug 4th, 2013
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. include_01.php
  2. <?php
  3.     include("header.php");
  4.     include("footer.php");
  5. ?>
  6.  
  7. header.php
  8. <html>
  9. <head>
  10.     <title>Demo include()</title>
  11. </head>
  12. <body>
  13.     <h1>Demo Portal</h1>
  14.     Berisi informasi
  15. <br>
  16.  
  17. footer.php
  18. <p>&nbsp;</p>
  19. <hr>
  20. <small>&copy;2000 - By Lintang</small>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement