Glossary

 

Please select the first letter of the term you would like to look up:

A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   All

Click on the term you would like to view.

Term:

Definition:

View this term in:

Source

".$oRS["Term"]."
"; echo $temp_str; $oRS=mysql_fetch_array($oRS_query); } } // Clean up 1 and say goodbye. // $getCurrentTerms=$temp_str; $oRS=null; mysql_close($oConn); $oConn=null; return $function_ret; } function GetGlossary($CurTerm) { // extract($GLOBALS); global $CurrentTerm, $TermDescription; $temp_str="SELECT Term, Term_Desc FROM Glossary where TermID = ".$CurTerm; $oConn=mysql_connect(OUR_HOST,OUR_USER,OUR_PWD); mysql_select_db(OUR_DB,$oConn); // TEST echo (mysql_error($oConn)."
"); $oRS_query = mysql_query($temp_str, $oConn); // TEST echo (mysql_error($oConn)."
"); $oRS = mysql_fetch_array($oRS_query); // TEST echo (mysql_error($oConn)."
"); if (($oRS==0)) { print "No records"; } else { $temp_str=""; while(!($oRS==0)) { $CurrentTerm=$oRS["Term"]; // TEST echo $CurrentTerm ."
"; $TermDescription=$oRS["Term_Desc"]; $oRS=mysql_fetch_array($oRS_query); // } // while($oRS=mysql_fetch_row($oRS_query)){ // TEST echo mysql_error($oConn) . "
"; //$CurrentTerm=$oRS["Term"]; echo $CurrentTerm ."
"; //$TermDescription=$oRS["Term_Desc"]; } } // Clean up 2 and say goodbye. $oRS=null; mysql_close($oConn); $oConn=null; return $function_ret; } ?>