Possible Duplicate:
Spliting Results of PHP Query into Columns
I have the following line of code that pulls the description from the database,
What I am trying to do is add <br/>
to the description so that it is not shown as one long string of data.
mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..'
Current:
Data Data Data Data Data Data.Data Data.Data Data.Data Data
Required:
Data Data
Data Data
Data Data
Full Code:
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $result['rating'],
'reviews' => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'])
);