$registros=mysqli_query($conexion,"select id,title, fecha, extracto, descript
from blogger order by fecha desc") or
die("Problemas en el select:".mysqli_error($conexion));
while ($reg=mysqli_fetch_array($registros))
{
echo '<h2><a href="post.php?title='.$reg['title'].'">'.$reg['title'].'</a></h2>';
echo '<br>';
echo $reg['fecha'];
echo '<br>';
echo $reg['extracto'];
echo '<br>';
echo '<hr>';
}