Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/07/2014, 19:45
flashtrix
 
Fecha de Ingreso: noviembre-2004
Mensajes: 249
Antigüedad: 20 años, 2 meses
Puntos: 1
Listar en Bloques

este script me ayudarona modificarlo aca ya me funciona logro listar las noticias de manera horizontal por 3

es decir asi..

| noticia1 | noticia2 | noticia3 |

ahora me gustaria que se pudiera hacer en esta forma ya que de esos tres no pasa...


| noticia1 | noticia2 | noticia3 |

| noticia4 | noticia5 | noticia6 |

| noticia7 | noticia8 | noticia9 |

aca dejo el script que me ayudaron ustedes a modificar el cual me funciona perfecto y lo pueden ver en funcionamiento aca: ver

aca dejo el codigo para que me ayuden

Código PHP:
<html>
<head>
<title>titulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <? 
$hostname 
"localhost";
$dbName   "basededatos";
$username "usuario";
$password "contraseña";
$tabla "boletin";

mysql_connect($hostname,$username,$password) or
print 
"Error en la Conexión";

mysql_select_db("$dbName") or
print 
"Error en la Base de datos";

$consulta "select * from $tabla order by id DESC";
$resultado=mysql_query($consulta);

$numregistros=mysql_numrows($resultado);

?>
<style type="text/css">
a:link {
    text-decoration: none;
    color: #000000;
}
a:visited {
    text-decoration: none;
    color: #000000;
}
a:hover {
    text-decoration: none;
    color: #000000;
}
a:active {
    text-decoration: none;
    color: #000000;
}
body,td,th {
    font-size: 10px;
    padding: 12px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<a href="administracion_index.php" target="_blank">-</a>
<table width="154" height="187" border="0" align="center">
  <tr>
      <tr>
 <?
$i
=0;
while (
$i 3)
 {
      
$fecha=mysql_result($resultado,$i,fecha);
      
$titulo=mysql_result($resultado,$i,titulo);
      
$descripcion=mysql_result($resultado,$i,descripcion);
      
$nombre_archivo=mysql_result($resultado,$i,nombre_archivo);
      
$id=mysql_result($resultado,$i,id);
      
$rest =strip_tags.substr($descripcion090);
          
//Crear filas hasta que salga del bucle
      
echo  "<td><a href='noti.php?id=$id'><img src='./$nombre_archivo' width='150' height='134' border = '0' HSPACE='8' VSPACE='3' align='middle'><br><p align='justify' strip_tags $rest </a></td>"

?>
    <? 
    $i
++; 
    } 
    
?>
</table>
</body>
</html>