Advertisement
Guest User

inc

a guest
Aug 23rd, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.30 KB | None | 0 0
  1. WHAT I CHANGED..........
  2.  
  3. <div class="bodyContent">
  4. <?php include ($file.".php"); ?>
  5. <?php include ($file.".php"); ?>
  6. </div>
  7. <div class="bodyContent">
  8. <a href="index.php?file=about">About</a>
  9. <a href="index.php?file=home">Home</a>
  10. </div>
  11.  
  12. ----------------------------
  13.  
  14. ENTIRE CODE
  15. -----
  16.  
  17.  
  18. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  19. <html xmlns="http://www.w3.org/1999/xhtml">
  20. <head>
  21. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  22. <title>Prodigy Doo Design</title>
  23. <link href="template/style.css" rel="stylesheet" type="text/css" />
  24. </head>
  25.  
  26. <body>
  27.  
  28.  
  29. <?php include('template/header.php'); ?>
  30. <div class="pad50px900wide"><!--Padding after headder--></div>
  31. <?php // include('template/nav.php'); ?>
  32.  
  33.  
  34. <!--*****************************
  35. ********* BODY CONTENT***********
  36. ******************************-->
  37. <div class="bodyContent">
  38. <?php include ($file.".php"); ?>
  39. <?php include ($file.".php"); ?>
  40. </div>
  41. <div class="bodyContent">
  42. <a href="index.php?file=about">About</a>
  43. <a href="index.php?file=home">Home</a>
  44. </div>
  45. <!--*****************************
  46. ******END OF BODY CONTENT********
  47. ******************************-->
  48.  
  49. <?php include('template/footer.php'); ?>
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement