[PHP]//page1.php
<?php
include('pageba se.php');
?>
//pagebase.php
<?php
echo __CALLING_FILE_ _; // outputs the previous php file. 'page1.php'
?>[/PHP]
I dont know the equivalent of __CALLING_FILE_ _. Please let me know on how to determine the previous file or the calling file.
<?php
include('pageba se.php');
?>
//pagebase.php
<?php
echo __CALLING_FILE_ _; // outputs the previous php file. 'page1.php'
?>[/PHP]
I dont know the equivalent of __CALLING_FILE_ _. Please let me know on how to determine the previous file or the calling file.
Comment