Darkness Soul Posted March 17, 2006 Share Posted March 17, 2006 Hi guys,I have the follow problem; when I'm at index.php or main.php, I don't want to my include toolbar.php show the [_back_] option.. and ALL my site have this include.So I think something like this: "If I get my path with the file name, I can test it to check if it's 'index.php' or 'main.php', so, if it's true, i don't show this option."But.. how can I do it?I've tryed to search it at function list (php5 documentation), but, don't found nothing..I'm glad someone may help me! ^-^Thank you a lot..D. Soul Link to comment https://forums.phpfreaks.com/topic/5169-path/ Share on other sites More sharing options...
Mattyspatty Posted March 17, 2006 Share Posted March 17, 2006 $_SERVER['PHP_SELF'] // returns /my_page.php Link to comment https://forums.phpfreaks.com/topic/5169-path/#findComment-18345 Share on other sites More sharing options...
Darkness Soul Posted March 17, 2006 Author Share Posted March 17, 2006 Thank you!That's work fine!!!![code]$path = pathinfo ( $_SERVER['PHP_SELF'] );$path = basename ( $path['basename'] , '.php' );if (( $path != 'index' ) && ( $path != 'main' )){ //code}[/code]Cya! Link to comment https://forums.phpfreaks.com/topic/5169-path/#findComment-18348 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.