Oh, OK. Well....hope this is what you want to know. This snippet will print the title of the newest entry linked to the individual entry page.
Start your page and connect to your database
CODE
<?php
//login
mysql_connect("localhost", "username", "password");
//database with tables
mysql_select_db("database");
And make a query, fetch results......
CODE
//put in parts for easy understanding
//the SQL statement
$sql = "SELECT * FROM blog_table ORDER BY timestamp DESC LIMIT 1";
//query
$query = mysql_query("$sql");
//get results
while($row = mysql_fetch_array($query)) {
//do one of these for each row, id, title, whatever you want...
$id = $row["id"];
$title = stripslashes($row['title']);
//... more here
Format what prints on the page
CODE
//display a sample link to the newest entry with the title and remember those \ before " !!
print("<a href=\"entry.php?id=$id\">$title</a>");
//close loop
}
?>
.. I broke up the code so people can try and learn something instead of copy and paste