Hi!
I know that this
basename ($PHP_SELF)
returns filename.php but when I want the name of a file required in another one, what can I do ?
This is the case:
// in filename.php digit
require("bonus.php");
// in bounus.php digit
basename ($PHP_SELF)
// returns filename.php but I want bonus.php
Thanks for help
_