session_start(); header("Cache-control: private"); //IE 6 Fix // Gets rid of all the error reporting on servers which are not configured appropriately. error_reporting(E_ALL ^ E_NOTICE); $theOrgId = $_SESSION['McMember_OrgId']; $theMemId = $_SESSION['McMember_MemId']; $thehiddenSubmitter = $_POST['hiddensubmitter']; $theSubmit=$_POST['B1']; // echo $thehiddenSubmitter; if (isset($thehiddenSubmitter)){ if ($theSubmit=="Existing Group"){ header("location: CreateGroupFromExisting.php"); } else{ header("location: CreateGroup.php"); } } // hidden submitter is set ?>
|
|