Can I store url in a global variable so i only change URL once when i host my website somewhere else

Viewed 20

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

0 Answers
Related