<?php
include 'config.php';
include 'opendb.php';
$result = mysql_query("SELECT * FROM 888db ORDER BY id")
or die(mysql_error());
echo "<table border='0'>";
echo "<div id='bodyframe'>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['topic'];
echo "</td></tr>";
}
echo "</div>";
echo "</table>";
include 'closedb.php';
?>
I want to 'topic' to be clickable to access rest of the article.