Well, thanks for your help guys, in the end i used the following code:
<?php
$db = mysql_connect("localhost", "otb", "mypword");
mysql_select_db("post",$db);
$result = mysql_query("SELECT * FROM nuke_downloads_downloads",$db);
if ($myrow = mysql_fetch_array($result)) {
echo "<table bgcolor=000099 border=1 cellspacing=1 cellpadding=5>\n";
echo "<tr><td><b><font color=FFFFFF>ID</b></font></td><td><b><font color=FFFFFF>URL</b></font></td><td><b><font color=FFFFFF>Description</b></font></td></tr>\n";
do {
printf("<tr><td><font color=FFFFFF>%s</font></td><td><font color=FFFFFF><a href=\"%s\">Download</a> </font></td><td><font color=FFFFFF>%s</font></tr>\n", $myrow["pn_lid"], $myrow["pn_url"], $myrow["pn_description"]);
} while ($myrow = mysql_fetch_array($result));
echo "</table>\n";
} else {
echo "Sorry, no records were found!";
}
?>
And got this as a result....

Which i am reasonably pleased with but there is still a long way to go.
The next things i want to look into are...
- Maximum Records Per Page and Next/Previous Page Buttons etc.
- Alternating Row Colours - i.e Blue Row then Grey Row, Blue Row then Grey Row
- Displaying latest records added to the database.
Once again, i will be looking through tutorials but any more pointers or advice would be appreciated.
Thanks a lot so far guys!!!
Dale C