Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Rohin Kansal
PLUS
Rohin Kansal
Courses Plus Student 642 Points

Create subdomains as profile address of each user in php?

Hi, I really want to know that how can I automatically create subdomains as profile's url for each individual user?

for example: rohin.domain.com instead of domain.com/rohin

1 Answer

You will have to create a wildcard subdomain which points to your main domain.

*.yourdomain.com

Then you can get the username when you explode $_SERVER['HTTP_HOST'].

<?php
$username = explode('.', $_SERVER['HTTP_HOST']);
echo $username[0];

Also you can perform additional checks to know whether you should fetch user's information or not. For example, when you explode $_SERVER['HTTP_HOST'] and count the elements.