hi there guys,
my head is spinning as ive been working on a new program that im sure you will all love once complete, problem is that ive been just under 36 hours with no sleep and cant think anymore.
I need to use the php trim function to remove first 4 characters
www.websitename.com
I need websitename.com only
how do i do this
thanks for the help in advance

Never mind....
this works
$site = $_GET['url'];
$newurl = ltrim($site, "www.");
thanks anyway
my head is spinning as ive been working on a new program that im sure you will all love once complete, problem is that ive been just under 36 hours with no sleep and cant think anymore.
I need to use the php trim function to remove first 4 characters
www.websitename.com
I need websitename.com only
how do i do this
thanks for the help in advance
Never mind....
this works
$site = $_GET['url'];
$newurl = ltrim($site, "www.");
thanks anyway







