Hi,
I have taken some advice on the use of constants from this forum and wish to move a step forward:
Presently I have "href" declared like the following:
<a href="<?php echo $base_url; ?>privacy" class="link">Privacy Policy</a>
But now I have a constant in the config file like this:
define('BASE', $_SERVER['HTTP_HOST'] . "/");
So my question is, how to I replace the $base:url; with the Constant.
I hope that makes sense....