wams 0 Denunciar post Postado Julho 8, 2015 queria saber como ordenar essa lista que quando eu postar a noticia, a noticia não ficar na ultima da lista e sim subir pra primeira Sou Iniciante, aí to aprendendo na marra, kkk, existe a possibilidade? <?php $id_cat = $_GET["id"]; $SQL_NC = mysql_query("SELECT id_noticia, titulo, conteudo, imagem, status FROM noticias WHERE categoria=$id_cat"); if(mysql_num_rows($SQL_NC) !=0){ while($nc = mysql_fetch_array($SQL_NC)){ $id_news = $nc["id_noticia"]; $titulo_news = $nc["titulo"]; $conteudo_news = $nc["conteudo"]; $imagem_news = $nc["imagem"]; ?> <section id="categoria-news"> <h1><a href="noticia.php?id=<?php echo $id_news; ?>"><?php echo $titulo_news; ?></a></h1> <section id="imagem-noticia"><img src="paineldecontrole/imagens/imgnoticia/<?php echo $imagem_news; ?>" alt="Titulo da Noticia" /></section> <p><?php echo substr($conteudo_news, 0, 550); ?> <a href="noticia.php?id=<?php echo $id_news; ?>">...Continue Lendo </a></p> </section> <?php } } else {?> Compartilhar este post Link para o post Compartilhar em outros sites
Gabriel Heming 766 Denunciar post Postado Julho 8, 2015 ORDER BY SELECT id_noticia, titulo, conteudo, imagem, status FROM noticias WHERE categoria=$id_cat ORDER BY id_noticia DESC Compartilhar este post Link para o post Compartilhar em outros sites