\n"; } ocilogoff(); } // Builds survey for display from Question table function genSurvey($conn) { $query = "SELECT COUNT(queID) FROM QUESTION"; $stmt = OCIParse($conn, $query); $exec = OCIExecute($stmt, OCI_DEFAULT); while( OCIFetch($stmt) ) { $quesCount = OCIResult( $stmt ); } ocilogoff(); } // Updates the Answer table with the results entered on survey function updateEval($conn, $ssn, $responses) { ocilogoff(); } // Checks to see if DCE username and SSN match function comprUserSSN($ssn, $user) { $newSSN = substr($ssn, 5, 8); $newUser = substr($user, 3, 6); If ( $newUser == $newSSN ) { } Else { // Invalid Login } } ?>