include("../nephi_obadiah.php"); $id=intval($_GET['id']); $sql="SELECT * FROM boma_articles WHERE id = $id"; $row = $db->queryRow($sql); if(!$id || is_null($row)) { header("Location: ./"); die; } extract($row); $article_title=$title; $title="Book of Mormon Adventures - $title"; include("topnav.php"); echo "
$article_title
\n"; echo "by $author
\n"; echo "".str_replace("\n","
\n",$article)."
"; include("endnav.php"); ?>