Here, try this.

PHP Code: 
<?php
$con 
mysql_connect("localhost","*****","*****");
if (!
$con)
  {
  die(
'Could not connect: ' mysql_error());
  }

mysql_select_db("*****"$con);

$result mysql_query("SELECT * FROM 'wp_posts' ".
"ORDER BY 'post_date' DESC LIMIT 0,1");

while(
$row mysql_fetch_array($result))
  {
  echo 
$row['wp_title'];
  }

mysql_close($con);
?>