You could also use

$self =explode("/", $_SERVER['PHP_SELF']);

and then parse along those lines.

Wolf


Schalk wrote:
> Greetings All,
> 
> Possibly a very simple question but here goes. How would I code the
> following in PHP?
> 
> if(window.location == (("http://www.epda.cc/index.php";) ||
> ("http://www.epda.cc/";))) {
>        $current_nav = "includes/home_nav.php";
>    } else {
>        $current_nav = "includes/inside_nav.php";
>    }
> 
> What I am trying to accomplish is something like this:
> 
> <?php      if(window.location == (("http://www.epda.cc/index.php";) ||
> ("http://www.epda.cc/";))) {
>        $current_nav = "includes/home_nav.php";
>    } else {
>        $current_nav = "includes/inside_nav.php";
>    }
>    ?>
>    <?php include($current_nav); ?>
> 
> Thanks!
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to