From: Gonzalo Merayo Date: Mon, 7 Jul 2003 19:23:53 +0000 (+0000) Subject: Ahora tiene 2 tablas para las noticias desacomodadas X-Git-Tag: svn_import~243 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/f5f3a1c3c7197cc0baa49fc15f96a27054c49f64?ds=inline;hp=ddcbc75bd490011eaf40e0302e1975723d0b170f Ahora tiene 2 tablas para las noticias desacomodadas --- diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php index a53f34f..90f5331 100644 --- a/sistema/www/noticias.php +++ b/sistema/www/noticias.php @@ -43,28 +43,28 @@ $result = $db->query($query); if(DB::isError($result)) die($result->getMessage("query mal hecho")); - $ht = new HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0')); - $not1 = $not2 = null; + $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $impar = true; while($row = $result->fetchRow()) { - $n = new noticia($row[0]); $not = new HTML_Noticia($n); if($row[1] == 'NUEVA') $not->setNuevo(true); - if(is_null($not1)) $not1 = $not; - elseif(is_null($not2)) + if($impar) { - $not2 = $not; - $ht->addRow(array($not1, $not2)); + $impar = false; + $ht1->addRow(array($not)); } else { - $not1 = $not; - $not2 = null; + $impar = true; + $ht2->addRow(array($not)); } } - if(is_null($not2)) $ht->addRow(array($not1)); + $ht = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $ht->addRow(array($ht1,$ht2)); $ht->display(); ?>