<?php
/**
* Getting family for Genus
* <br/><br/>
* @author Gabriele Droege, DNA Bank Network <contact@dnabank-network.org>
* @version 2.0
* @package Specimen Tool
* @copyright Copyright Š 2011 DNA Bank Network http://www.dnabank-network.org<br>The contents of this file are subject to the Mozilla Public License Version 1.1
* @filesource
* @license http://www.mozilla.org/MPL/ MPL
*/
	

$result= mysqli_query($GLOBALS["___mysqli_ston"], "SELECT sptoolhighertaxon.HigherTaxon FROM sptoolhighertaxon 
RIGHT JOIN sptooltaxa ON sptoolhighertaxon.FK_TaxonIdentified = sptooltaxa.ID_TaxonIdentified
WHERE sptoolhighertaxon.TaxonRank = 'classis' AND sptooltaxa.Genus = '".$formGenus4."' LIMIT 1"); 

while($row = mysqli_fetch_object($result))
{
echo $row->HigherTaxon; 

}


?>