Why doesn't the contents of the "title" field get displayed on the screen?
<?php
$con = mysql_connect("localhost","ODBC","");
if (!$con)
{
die(mysql_error());
}
mysql_select_db("MP3", $con);
$result = mysql_query("SELECT * FROM books");
echo $result['title'];
mysql_close($con);
?>