Is it possible to store in a global variable the URL of my site rather than change all links in my site when i change my host
FOR EXAMPLE:
what i have :
<a href="rootURL/pages/page.php">LINK</a>
what i want :
<?php $root = 'rootURL'; ?>
<a href="<?php echo $root; ?>/pages/page.php">LINK</a>;
By this way i would only have to change one variable if i host the website