You need == instead of = there

On Fri, 19 Jul 2002, John Wulff wrote:

> Any ideas on why this won't work?  It will only include("inc/entrance.php")
> It never, no matter what the value of $mode, displays collection.php.
>
>    <?php
>    $mode = "entrance";
>    if ($mode = "entrance") {
>     include("inc/entrance.php");
>    }
>    else if ($mode = "collection") {
>     include("inc/collection.php");
>    }
>
>    ?>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


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

Reply via email to