This is my home.php
:
require('header.php');
This is my header.php
if (basename(__FILE__) == "home.php"){
echo "you are on home.php";
} else {
echo "you are not on home.php";
}
When I now open the URL www.mypage.com/home.php
I see the text you are not on home.php