Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/06/2011, 18:27
Avatar de memoadian
memoadian
Colaborador
 
Fecha de Ingreso: junio-2009
Ubicación: <?php echo 'México'?>
Mensajes: 3.696
Antigüedad: 15 años, 5 meses
Puntos: 641
Respuesta: No logro encontrar el error

Código PHP:
Ver original
  1. <?php
  2.  
  3. include ("db-cnx.php");
  4. // verificamos si se ha enviado
  5. // alguna variable via GET
  6. if (isset($_GET['id']) && $_GET['categoria']) {
  7. // asignamos los valores
  8. // a las variables que usaremos
  9.     $cat_ID = $_GET['id'];
  10.     $categoria = $_GET['categoria'];
  11.     $clausula = "WHERE notCategoriaID = '$cat_ID'";
  12. // tambien armamos el titular de la pagina
  13.     $titulo = "Noticias en la categoria $categoria";
  14. } else {
  15. // de lo contrario
  16. // el titulo sera general
  17.     $titulo = "Todas las noticias";
  18. }
  19. // armamos la consulta
  20. $sqlQueryNot = mysql_query("SELECT notTitulo, notTexto, fotos FROM sn_noticias
  21. $clausula", $db_link)
  22.         or die(mysql_error());
  23. echo "<h1>$titulo</h1>";
  24. // mostramos las noticias
  25. // otra vez usando un bucle while
  26. while ($rowNot = mysql_fetch_array($sqlQueryNot)) {
  27.     echo "<h1>".$rowNot['notTitulo']."</h1>";
  28.     echo nl2br($rowNot['notTexto']);
  29. }
  30. ?>

tan simple como saber concatenar bien :)