Por alguna razón no me fuinciona... he tardado en responder porque no habia llegao a este punto de programación pero mira:
Código PHP:
Ver original<?php
$detalles = $producto['Cualidad'];
function toTable($detalles) {
?>
<table>
<?php foreach (explode("\n", $detalles) as $i => $detalle) : ?> <?php if ($i % 2 != 0) { ?>
<?php list($campo, $valor) = explode(': ', $detalle); ?> <tr>
<td><?php $campo ?></td>
<td><?php $valor ?></td>
</tr>
<?php }else{ ?>
<tr>
<td colspan="2"><?php $detalle ?></td>
</tr>
<?php }?>
<?php endforeach; ?>
</table>
<?php
}
echo toTable($detalles);
?>
Ese código me tira:
Todo en blanco me sale :(