Skip to content

Instantly share code, notes, and snippets.

@wilcorrea
Last active November 10, 2016 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilcorrea/fd404e9610622c3aa2e68843a7d1b225 to your computer and use it in GitHub Desktop.
Save wilcorrea/fd404e9610622c3aa2e68843a7d1b225 to your computer and use it in GitHub Desktop.
<?php
include 'conexao.php';
$noticias = $DB->query("SELECT * FROM noticias WHERE categoria = '{$_GET['categoria']}'");
while ($noticia = $DB->fetch($noticias)) {
?>
<div>
<?php
echo $noticia['titulo'];
?>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment