I have php code from which i got my domain name and I need to do include header.php(heder part) to my webpage and it is not including. What i do wrong?
It is code for getting domain name
$actual_link = "http://$_SERVER[HTTP_HOST]";
Here is code where i try to include
<?php include $actual_link."/header.php"; ?>
Why it is not working for inlcude, but working for everething except include?