The code below displays: domain.com/ but I would like to display just domain.com without the / Code: <?php $hostname = $_SERVER['SERVER_NAME']; $hostname = str_replace('www.', '', $hostname); echo $hostname . htmlentities($_SERVER['REQUEST_URI']);?> Also how would I display domain.com in all uppercase letters; DOMAIN.COM
Displaying domain name only in PHP without www. or / or anything else.. ?
2
The code below displays: domain.com/ but I would like to display just domain.com without the /
Also how would I display domain.com in all uppercase letters; DOMAIN.COM
Thanks in advance!
Code:
<?php $hostname = $_SERVER['SERVER_NAME']; $hostname = str_replace('www.', '', $hostname); echo $hostname . htmlentities($_SERVER['REQUEST_URI']);?> Thanks in advance!
- IdeaBox
Next Topics on Trending Feed
-
2