Well,i`ve installed and running WordPress on my localhost,and here may this help you :
In my opinion,you want to display your
newest entry of the blog to anywhere you want?so...
PHP Code:
//first,connect to mySQL using info stored in wp-config.php
$a = mysql_query("SELECT * FROM wp_posts WHERE ID = MAX(ID)") or die(mysql_error());
$b = mysql_fetch_assoc($b);
if the above query wont work,pls play around with "SELECT MAX(ID) FROM wp_posts".I`m going to sleep rite now,sorry if this doesnt help you
