You need to run an SQL query on another page (or the same page) to retrieve it. it should look something like this
<?php
require_once ('mysql_connect.php');
$sql = "SELECT * FROM place_on_your_db WHERE title = '$title'";
$res = mysql_query($sql) or die("Query Error: ".mysql_error());
$data = mysql_fetch_array($res) or die("".mysql_error());
$text = $data[text];
$author = $data[author];
$title = $data[title];
?>
Now you want to place it somewhere on the page :
<u><?php echo $title; ?></u><br>
<?php echo $text; ?><br>
By, <?php echo $author; ?><br>