here is the code i am using for displaying my table ..
$hfeed ="SELECT title, author , description ,price FROM items";
$resfeed = $conn4->query($hfeed);
echo "<table>" ;
echo "<tr><th>Title</th><th>Author</th><th>Price</th></tr>";
if ($resfeed->num_rows > 0)
{
while($row = $resfeed->fetch_assoc())
{
echo "<tr> <td><a href='content.php'>". $row["title"]. "</a></td> <td>". $row["author"]. "</td> <td>" . $row["price"]. "</td> </tr>";
}
}
else
{
echo "0 results";
}
echo "</table>";
what should i code for content.php to display the fields of a desired cell.