function wildlife($tree,$flower,$animal)
{
if ($tree) {
print "I sat under a tall, sturdy $tree tree. ";
}
else {
print "(Please select a tree!)
";
}
if ($flower) {
print "Unexpectedly, I saw movement near the lovely $flower. ";
}
else {
print "(Please select a flower!)
";
}
if ($animal) {
print "There stood a growling, and very unhappy, $animal! ";
}
else {
print "(Please select an animal!)";
}
if (($tree) AND ($flower) AND ($animal)) {
print " --Thomas Jefferson";
}
else {
print "
Part of my tale remains untold. "; print "Please, won’t you finish the story?!
"; } }