<?php
$db = mysql_connect("localhost", "root","123456","dede");
$result = mysql_query("SELECT title FROM dede_archives where id='456'");
$rs=mysql_fetch_object($result);
echo $rs->title;
?>