Advertisement
Guest User

Untitled

a guest
Jul 5th, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. This...
  2.  
  3. <link rel="stylesheet" type="text/css" href="<?php echo $_SERVER["DOCUMENT_ROOT"].'/../includes/css/style.css'; ?>">
  4.  
  5. Outputs this...
  6.  
  7. C:/xampp/htdocs/MYSITE/../includes/css/style.css
  8.  
  9. NOT
  10.  
  11. C:/xampp/htdocs/MYSITE../includes/css/style.css
  12.  
  13. Currently i have...
  14.  
  15. <link rel="stylesheet" type="text/css" href="<?php echo $_SERVER["DOCUMENT_ROOT"].'/includes/css/style.css'; ?>">
  16.  
  17. Which outputs correctly this..
  18.  
  19. C:/xampp/htdocs/MYSITE/includes/css/style.css
  20.  
  21. But CSS still not applying.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement