I have this block that prints some description and some product details.
<?php foreach ($_additional as $_data): ?>
<tr>
<th class="label"><?php echo $this->htmlEscape($this->__($_data['label'])) ?></th>
<td class="data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></td>
</tr>
<?php endforeach; ?>
I want to turn this into printing the description and only a number of product details so what I did is this
<?php
for ($i = 0; $i <=4; $i++) {
print_r($_additional[$i]);
}
?>
This prints only the description though. How can I also print the product details?
Thank you