Hello
I'm not sure how this is possible but I want to enter a wildcard(?) into a php variable..
like this,
<?php
if($_SERVER['HTTP_HOST'] == '*.domain.com') {
//do something
}
?>
Notice the *
I basically need it to match if its any subdomain of domain.com
Possible?