When I run my php script is it possible to get a name (not the whole path) of that script as a variable?
It is stored in $PHP_SELF
Matt Wade codewalkers.com
Sorry..misread your post...
try this...
$script = substr(strrchr($PHP_SELF, "/"), 1);
Dear Matt, thanks a lot, it works 🙂