Hello guys,
I need to extract the URL name of page I am looking right now. I know I can use $PHP_SELF but it returns me whole path and I need to extract only URL like page.php
How I can do that without using String functions for extraction?
Alex
hi try the function basename(), should be work...
http://www.php.net/manual/en/function.basename.php
That's right what I was looking for.
Thanks