";
// We carry out the table population using a 'while' loop
while ($row=mysql_fetch_array($mysql_result))
{
$id=$row["id"];
$title=$row["title"];
$description=$row["description"];
// We display the results under the correct headings
echo "
$id
$title
$description
";
}
}// End else while
// We close the MySQL connection
mysql_close($connection);
?>