0
Well, I’m picking up posts when you load the page, but when I do a new post and give an append it goes to the end of the page and also it is half the scroll does not accompany, I tried everything with jquery but n scroll :/
Any help is welcome, obg and good night..
//Pega o post no bd
$lastpost = DBRead( 'posts', "WHERE id = '". $id ."'", 'conteudo');
//Transforma o array em string
$postcont = (string)$lastpost[0]['conteudo'];
// esta função e de um outro script apenas para cercar o conteudo que veio
// do banco com html estilizado
$post = post($postcont);
// aqui eu dou o append para colocar o post no feed
echo "<script>$('div.overview').append(".$post.");</script>";
By the image, you are using google Chrome. In this same browser, press CTRL+SHIFT+I to open the console. In the console you can see which errors happen.
– Daniel Omine
does not point out any errors, not even with firebug
– Restolhada