// Gets rid of all the error reporting on servers which are not configured appropriately. error_reporting(E_ALL ^ E_NOTICE); // $_SESSION['McMember_CurrentPage'] = ""; // $_SESSION['McMember_CurrentPage'] = 5; $MSOFinal = $_SESSION['McMember_SO']; // Get the PHP file containing the DbConnector class require_once('../DbConnector.php'); // Create an instance of DbConnector $connector = new DbConnector(); function getColor($theRespectiveItem){ if ($theRespectiveItem == 1){ $theColor = "006600"; } else{ $theColor = "CC0000"; } return $theColor; } // GET THE ORG DETAILS // THROW THEM INTO VARIABLES $qVals11 = "SELECT * FROM org WHERE OrgId =".$_SESSION['McMember_OrgId']; $result = $connector->query($qVals11); // Get the result $row = $connector->fetchArray($result); $OrgName = $row["OrgName"]; $OrgNumber = $row["OrgNumber"]; // >> GET MEMBER PERMISSIONS // CHECK PERMISSIONS OF THE USER TO SEE WHAT THEY CAN DO WITH MEMBERS // POPULATE SESSION PERMISSIONS BASED ON THOSE VALUES. // >> PULL UP THE DATA TO BE USED IN THE LIST $qVals11 = "SELECT * FROM oda LEFT JOIN mem ON oda.MemId = mem.MemID WHERE OrgId =".$_SESSION['McMember_OrgId']." AND mem.Deleted=0".$MSOFinal; // echo $qVals11; $result = $connector->query($qVals11); $record_found = mysql_num_rows($result); $nrows = mysql_num_rows($result); // $row = $connector->fetchArray($result); print "
"; ?>