are you trying to get it to do something when members and profile are in the querystring? if so then you can use this:
so
if ($_GET['view'] == "Members" and $_GET['Profile']) {
That wil return true when $view == Members and when $profile exists, which it does because you have done Members&Profile&, the ampesand (&) indicates to PHP to initialize a new variable.
Also shouldn't you be compnsating for register_globals and be using $GET['view'] and $GET['Profile'] instead. I have corrected my code respectively.
P.S Don't double post, it just gets some people's backs up, the result is counter productive.