Enjoy unlimited access to all forum features for FREE! Optional upgrade available for extra perks.

stripping out the .co and leaving .uk

Status
Not open for further replies.

Paullas

Staff member
Joined
Jul 13, 2004
Posts
5,794
Reaction score
339
can anyone help as im stumped.

what i am trying to do is on parked domains just show the domain name and .uk, for exmaple when going to wrapz.co.uk on the page it only shows wrapz.uk.

The code i am using is this:

<?php
$domainstart = $_SERVER['HTTP_HOST'];
$domainname = str_replace("www.", "", "$domainstart");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><? echo "$domainname"; ?></title>
</head>

<body>
<div align="center"><? echo "$domainname"; ?> -
<a target="_blank" href="http://wrapz.co.uk/" style="text-decoration: none">
</body>
</html>
 
Change

PHP:
$domainstart = $_SERVER['HTTP_HOST'];
$domainname = str_replace("www.", "", "$domainstart");

to

PHP:
$domainstart = $_SERVER['HTTP_HOST'];
$remove = array("www.", ".co");
$domainname = str_replace($remove, "", $domainstart);
 
Use admins
 
Last edited:
Also the link within the body tags has no closing </a> or </div> tags and wrapz.co.uk has not been replaced with $domainname. So presumably you want something like this:

<div align="center">
<a target="_blank" href="http://<? echo "$domainname"; ?>/" style="text-decoration: none"><? echo "$domainname"; ?></a></div>
 
You also need to remove quotes on echo "$domainname".

It is just echo $domainname
 
what do you mean use Admins?

I started to write a snippet, but realised admin had posted before me, so I edited mine out.
 
Lol, i'm going nuts... I meant Darren. :p
 
Status
Not open for further replies.

The Rule #1

Do not insult any other member. Be polite and do business. Thank you!

Members online

Featured Services

Sedo - it.com Premiums

IT.com

Premium Members

AucDom
UKBackorder
Register for the auction
Acorn Domains Merch
MariaBuy Marketplace

Domain Forum Friends

Other domain-related communities we can recommend.

Our Mods' Businesses

Perfect
Service
Laskos
*the exceptional businesses of our esteemed moderators
Top Bottom