Gossamer Forum
Quote Reply
url without http://
Hi
In the details page I want to insert in a text the url of the site I recommend, I need the url will be like www.mysite.com, without the http:// and without the end of the url "www.mysite.com/aa/sport.php".
Is anyone knew who to do it?

Quote Reply
Re: [nir] url without http:// In reply to
Hi, you could try something like this;

<%get_domain_name($URL)%>

Code:
sub { $_[0] =~ m|http://(.*?)\/(.*?)| and return $1 }

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] url without http:// In reply to
Thankes Andy