Ver Mensaje Individual
  #19 (permalink)  
Antiguo 25/09/2008, 15:12
mesoriginal
 
Fecha de Ingreso: septiembre-2008
Mensajes: 211
Antigüedad: 16 años, 2 meses
Puntos: 2
Respuesta: Sistema de Noticias (aporte)

Este archivo PHP lo hice para el ver mas, se llama:

mas.php

No me sale diganme donde fallo!!


Código PHP:
<?php include('db-cnx.php'); ?>
<?php
// verificamos si se ha enviado
// alguna variable via GET
if(isset($_GET['id']) && $_GET['categoria']){
    
// asignamos los valores
    // a las variables que usaremos
    
$cat_ID $_GET['id'];
    
$categoria $_GET['categoria'];
    
$clausula "WHERE notCategoriaID = $cat_ID";
    
// tambien armamos el titular de la pagina
    
$titulo "Noticias en la categoria $categoria";
}else{
    
// de lo contrario
    // el titulo sera general
    
$titulo "Totes les notícies";
}
// armamos la consulta
$sqlQueryNot mysql_query("SELECT notTitulo, notTexto, not_ID, notCategoriaID FROM sn_noticias
                            $clausula"
$db_link)
                            or die(
mysql_error);


echo 
"<h1>$titulo</h1>";
// mostramos las noticias,
// otra vez usanod un bucle while
while($rowNot mysql_fetch_array($sqlQueryNot)){
    echo 
"<h2>$rowNot[notTitulo]</h2>";
    echo 
substr($rowNot['notTexto'], 0500);

echo 
"<a href=mas.php?id=$rowNot[not_ID]&categoria=$rowNot[notCategoriaID]>més</a>";  

}
?>