nyone can tell me how can i put a link on my AuthorName results so when i try to click it and call another .php file it will display the whole contents of that particular record?

PHP Code:
$result mysql_query ("SELECT * FROM tblAuthor WHERE AuthorName LIKE '%$bsearch%'"); 
  
$total_records mysql_num_rows($result);
  echo 
"<table>";
  echo 
"<tr><td><B>Author Name</B><td><B>Author ID</B></tr>";
  while (
$row mysql_fetch_array($result))
  {
  echo 
"<tr><td>";
  echo 
$row["AuthorName"];
  echo 
"<td>";
  echo 
$row["AuthorID"];
     }
  echo 
"</table>";
  }
  echo 
"<p>";
  echo 
"Total records found!:  ".$total_records."</p>"