On Saturday 05 July 2003 11:47 am, Michael Whiting wrote:
> Sorry - here's the HTML source.  Don't laugh :)
>
>
<snip>

> if ($view1 = true):

That statement will always evaluate to true. You may need 

if($view1 == true)

notice the double equal sign

> if ($view1 = false):
Same here ^^^^
RDB

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

Reply via email to