Jump to content

Building a Constant into a link


A2enMOD

Recommended Posts

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....

Link to comment
https://forums.phpfreaks.com/topic/272767-building-a-constant-into-a-link/
Share on other sites

That's what it actually outputs, or that's where it directs you to when you click it?

Sounds like you're missing the http:// at the front of your constant.

 

Do some basic debugging on your own.

 

Yep you were right on the mark there. I changed it to:

 

define('BASE', 'http://'.$_SERVER['HTTP_HOST'] . "/");

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.