session_start();
include("includes/config.php");
$pname=$_GET['pname'];
$row=mysql_fetch_array(mysql_query("select * from poet where poetname='$pname'"));
include("templates/header.php");
?>
include("templates/leftbar.php");?> |
Poet Detail |
Poet Name: |
|
Poet Biography: |
|
List of their
Poems |
$p=mysql_query("select * from poetry where poet ='$pname' and status='Active' order by title");
while($prow=mysql_fetch_array($p)) {
?>
| |
}?>
|
include("templates/rightbar.php");?> |
include("templates/footer.php"); ?>