el problema es que al hacer dos consultas se me duplican mis artículos queda por ejemplo
9--- 9 8-------8 77 66 55 44 33 22 11
par--par impar--impar......
Código PHP:
Ver original<?php
require("banner/conexion.php");
$query = "SELECT * FROM articulos order by id desc limit 6 ";
$resultado =$conexion->query($query);
while($row=$resultado->fetch_assoc()){
$ruta = "img/" . $row['imagen'];
$i = 0;
while ($fila = $resultado->fetch_row()) {
if (($i++ % 2) == 1) {
$class = 'imagen2'; /* esta es azul*/
}
}
?>
<div class="imagen1">
<img src="<?php echo $ruta; ?>" width="200" heigth="300">
<a href="http://localhost/WEB/confecoop/ubusina/public/articulos.php"></a>
<h3><?php $cortar =($row['titulo']);
$cortar=substr($cortar, 0,35) ."..";} echo $cortar;?></h3>
<p><?php $cortar =($row['texto']);
$texto_size=140;
$cortar=substr($cortar, 0,$texto_size); $cortar=substr($cortar, 0,$index); $cortar.="... Leer Mas"; echo $cortar;?></p>
<!--Aqui mostramos un string cortado-->
</div>
</div>
</div>
<!--aqui termina el articculo 1-->
<!--- aqui empieza el articulo 2 amarillo-->
<?php
$query = "SELECT * FROM articulos order by id desc limit 6 ";
$resultado =$conexion->query($query);
while($row=$resultado->fetch_assoc()){
$ruta = "img/" . $row['imagen'];
$i = 0;
while ($fila = $resultado->fetch_row()) {
if (($i++ % 2) == 1) {
$class = 'imagen2'; /* esta es azul*/
}
}
?>
<div class="imagen2">
<img src="<?php echo $ruta; ?>" width="200" heigth="300">
<a href="http://localhost/WEB/confecoop/ubusina/public/articulos.php"></a>
<h3><?php $cortar =($row['titulo']);
$cortar=substr($cortar, 0,35) ."..";} echo $cortar;?></h3>
<p><?php $cortar =($row['texto']);
$texto_size=140;
$cortar=substr($cortar, 0,$texto_size); $cortar=substr($cortar, 0,$index); $cortar.="... Leer Mas"; echo $cortar;?></p>
<!--Aqui mostramos un string cortado-->
</div>
</div>
</div>
<?php } ?>
<?php } ?>
</fieldset>
</head>
<body>
</body>
</html>