Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /css
  2. -style.css
  3. /includes
  4. -shop.css
  5. -header.php
  6. -footer.php
  7. /php
  8. /js
  9. /shop
  10. -index.php
  11.  
  12. -index.php <-- homepage
  13. -config.php
  14.  
  15. define('ROOT_PATH',$_SERVER['DOCUMENT_ROOT']);
  16.  
  17. <?php include './config.php';?>
  18. <!DOCTYPE html>
  19. <html lang="en">
  20. <head>
  21. <meta charset="utf-8">
  22. <?php echo '<link href="'.ROOT_PATH.'/css/style.css" rel="stylesheet">';?>
  23. <?php if ($_SERVER['REQUEST_URI'] == '/shop/'){echo '<link href="'.ROOT_PATH.'/includes/shop.css" rel="stylesheet">';} ?>
  24. </head>
  25.  
  26. define('ROOT_PATH',$_SERVER['HTTP_HOST']);
  27.  
  28. <?php include '/home/user/config.php';?>
  29.  
  30. <?php include '../config.php'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement