A2enMOD Posted January 6, 2013 Share Posted January 6, 2013 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 More sharing options...
Jessica Posted January 6, 2013 Share Posted January 6, 2013 See where you echo $base_url? Replace the variable with the constant. Link to comment https://forums.phpfreaks.com/topic/272767-building-a-constant-into-a-link/#findComment-1403694 Share on other sites More sharing options...
A2enMOD Posted January 6, 2013 Author Share Posted January 6, 2013 The problem I had with your solution is this: it output: http://mysite.com/mysite.com/privacy Link to comment https://forums.phpfreaks.com/topic/272767-building-a-constant-into-a-link/#findComment-1403697 Share on other sites More sharing options...
Jessica Posted January 6, 2013 Share Posted January 6, 2013 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. Link to comment https://forums.phpfreaks.com/topic/272767-building-a-constant-into-a-link/#findComment-1403699 Share on other sites More sharing options...
A2enMOD Posted January 6, 2013 Author Share Posted January 6, 2013 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'] . "/"); Link to comment https://forums.phpfreaks.com/topic/272767-building-a-constant-into-a-link/#findComment-1403700 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.