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 Quote Link to comment Share on other sites More sharing options...
Mattyspatty Posted March 17, 2006 Share Posted March 17, 2006 $_SERVER['PHP_SELF'] // returns /my_page.php Quote Link to comment 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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.