if (($author) AND ($title))
{
print ("$title was written by $author.");
}
elseif (($title) AND (!$author))
{
print ("The book's title is $title.");
}
elseif (($author) AND (!$title))
{
print ("The book\'s author is $author.");
}
else
{
print ("Neither a title nor an author");
print (" was selected.
");
print ("");
print ("Please try again.");
}
?>