I have a php file whose content is like this, the url to it is "www.xyz.com/abc.php" for example
<?php
include "def.php";
echo "something";
?>
how can I keep the "def.php" from being excuted when the user typing the url "www.xyz.com/def.php"
I have a php file whose content is like this, the url to it is "www.xyz.com/abc.php" for example
<?php
include "def.php";
echo "something";
?>
how can I keep the "def.php" from being excuted when the user typing the url "www.xyz.com/def.php"