Jump to content
Fórum Script Brasil
  • 0

Visualizar noticia


Fernanda Francisco

Question

Pessoal estou precisando de um auxilio. Desenvolvi um sistema de noticias.. mas como ele esta hoje, eu preciso clicar em uma para que apareça a noticia. Eu queria que sempre que abrisse a pagina, a primeira do BD já fosse listada e quando eu clicar em outra, troque a info.. tudo na mesma pagina. alguém pode me ajudar? já tentei varias coisas..sou iniciante em php. obrigada

<?php

include "conexao.php";

if (isset($_GET['id'])) {

// mostra a notícia selecionada

$sql_listar_noticias = "SELECT * FROM noticias WHERE id=$id' ORDER BY id DESC";

$resultado_listar_noticias = mysql_query($sql_listar_noticias)

or die (mysql_error());

if(mysql_num_rows($resultado_listar_noticias) < 1) {

echo "Nenhum notícia publicada.";

}

else {

while ($linha=mysql_fetch_array($resultado_listar_noticias)) {

$titulo = $linha["titulo];

$preço = $linha["preço"];

$noticia = $linha["noticia"];

$categoria = $linha["categoria"];

$titulo = $linha["titulo"];

$observacao = $linha["observacao"];

$autor = $linha["autor"];

$email = $linha["email"];

$local = $linha["local"];

$imagem1 = $linha["imagem1"];

$imagem2 = $linha["imagem2"];

$imagem3 = $linha["imagem3"];

$imagem4 = $linha["imagem4"];

}}

} else {

echo "nada";

}

?>

<div class="titulo"><?php echo "$titulo";?></div>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...