Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. $s = $_SERVER['SERVER_NAME'];
  2. $a = explode('/', $_SERVER['PHP_SELF'], 3);
  3. $completeURL = "http://".$s."/".$a[1];
  4.  
  5. <img src="<?php echo $completeURL; ?>/images/img.png" alt="">
  6.  
  7. <img src="<?php echo $completeURL; ?>/images/img.png" alt="">
  8.  
  9. <?php
  10. define('URL_WEBSITE_COM', 'http://example.com');
  11.  
  12. // y otra especialmente para imágenes por ejemplo:
  13. define('URL_IMAGE', 'http://example.com/images/');
  14.  
  15. <img src="<?php echo URL_IMAGE; ?>img.png" alt="">
  16.  
  17. <a href="<?php echo URL_WEBSITE_COM; ?>/Foo">Bar</a>
Add Comment
Please, Sign In to add comment