Hallo Leute,
habe ein kleines Problem bei welchem ich auf Hilfe angewisen bin.
Ich habe eine Schleife:
Nun möchte ich jedes zweite Ergebniss farblich hervorheben.
Eigentlich NULL Problemo. Allerdings habe ich so meine Schwierigkeiten jede zweite Abfrage mit einer Variable zu definieren.
Versteht Ihr was ich meine?.
Wäre dankbar für Unterstützung.
Danke und Gruss
habe ein kleines Problem bei welchem ich auf Hilfe angewisen bin.
Ich habe eine Schleife:
PHP:
$row = 0;
$col = 0;
$info_box_contents = array();
while ($family = tep_db_fetch_array($art_groesse_all_query)) {
$family['products_name'] = tep_get_products_name($family['products_id']);
?>
<tr>
<td width="20%" align="center" class="smalltext"><?= $family['products_name'] ?></td>
<td width="20%" align="center" class="smalltext"><?php
if ($family['products_quantity'] > 0)
echo $lc_text = tep_image(DIR_WS_IMAGES . 'icon_status_green3.gif',LIEFERBAR, 31,14); else
echo $lc_text = tep_image(DIR_WS_IMAGES . 'icon_status_red3.gif',ARTIKEL_VERGRIFFEN, 31,14); ?></td>
<td width="20%" align="center" class="smalltext"><?= $family['products_model'] ?></td>
<td width="20%" align="center" class="smalltext"><font><b><? if($family['specials_new_products_price'] > '0'){
echo $currencies->display_price_nodiscount($family['specials_new_products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
}else{
echo $currencies->display_price($family['products_id'],$family['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
} ?></b></font></td>
<td width="20%" align="center" class="smalltext"><?php echo tep_draw_checkbox_field('add_recommended[]',$family['products_id']); ?></td>
</tr>
<?php
$col ++;
if ($col > 0) {
$col = 0;
$row ++;
}
}
}
Nun möchte ich jedes zweite Ergebniss farblich hervorheben.
Eigentlich NULL Problemo. Allerdings habe ich so meine Schwierigkeiten jede zweite Abfrage mit einer Variable zu definieren.
Versteht Ihr was ich meine?.
Wäre dankbar für Unterstützung.
Danke und Gruss