$plant = $_GET['plant'];
if (stripos ($plant , '/')===FALSE && stripos ($plant, "\\")===FALSE) {
$title = $plant;
$bugClass="plantids";
include ('header.php');
include('manualentries/' . $plant . '.php');
?>
Back to Index
include ('footer.php');
}
else {
echo ("Not a valid manual page. Please return to Family Index");
}
?>