Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im getting the URL using:

$url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];

This returns something like:

http://me.domain.co.uk

How can I select 'me' only?

share|improve this question

2 Answers

up vote 1 down vote accepted
$uriParts = explode('.',$_SERVER['SERVER_NAME']);

$subDomain = $uriParts[0];
share|improve this answer
Note that $_SERVER['SERVER_NAME'] does not contain the host which was requested (HTTP Host header) which might not be what danit wants. – Malax Sep 17 '09 at 15:43

Use parse_url, get the host of the URL and split it by dots. Then you can retrieve your desired subdomain easily.

Edit: Answered too fast, this is not the real answer to your problem, you could do that this way but i wouldn't do it. If you want the requested subdomain you can use something like that:

$hostParts = explode('.', $_SERVER['HTTP_HOST'])
print $hostParts[0];

Note that this example does not include error handling. (i.e.: $_SERVER['HTTP_HOST'] might be empty)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.