Title: how to add www on a domain name infront of the url
Description: how to add www on a domain name infront of the url PHP
Tags: how, to, add, www, on, a, domain, name, infront, of, the, url
Info: This Post Has Been Viewed 971 Times SinceSat Mar 08, 2008 10:27 am Author tutorial With 0 Replies #5846

how to add www on a domain name infront of the url

let say you have a script and and you want to know the current domain name but if the hostname is not on the url then add it.

for example, i want to force http://wallpaperama.com to be http://www.wallpaperama.com

i can use this

<?
$domainname = $_SERVER['HTTP_HOST'];
if(!strstr($domainname,'www.')){
$domainname = str_replace('www.','',$string);
}
?>


Comments (0)
View Top Comments
Share
| More