Well, first thing I see is that you need to change this:

    if ($mode == "entrance")

You need the double equal signs for string comparison.



> From: [EMAIL PROTECTED] (John Wulff)
> Newsgroups: php.general
> Date: Fri, 19 Jul 2002 00:25:12 -0700
> To: [EMAIL PROTECTED]
> Subject: Why won't this work?
> 
> 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

Reply via email to