Código PHP:
<?php
$link = mysql_connect("******", "*****", "*****")
or die ("Could not connect");
$sql="SELECT * FROM posts";
$result=mysql_query($result);
while($row=mysql_fetch_object($result)){
echo $row['Title'];
}
?>
Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in /home/a4716509/public_html/post.php on line 6