> $thisPoem = $_GET["poem"]; > $thisPoemResponse = $_GET["response"]; > $thisnewPoem = $_GET["newpoem"]; > $thisAuthor = $_GET["who"]; > $thisPoetryMonth = $_GET["month"]; > $thisPoetryYear = $_GET["year"]; > > if ($thisAuthor==null) { > $thisAuthor = $_GET["author"]; > } > // added for action poetry!!! > > if (($thisPoem!=null) && ($thisPoemResponse!=null)) { > include(TEMPLATEPATH . "/poetryresponse.php"); > exit; > } else if ($thisPoem!=null) { > include(TEMPLATEPATH . "/poetry.php"); > exit; > } else if ($thisAuthor!=null) { > include(TEMPLATEPATH . "/profile.php"); > exit; > } else if (($thisPoetryMonth!=null) && ($thisPoetryYear!=null)) { > include(TEMPLATEPATH . "/poetryArchive.php"); > exit; > }