Formatting content under CJuiTab

I have CJuiTab displaying two tabs.

Tab 1: simply assigned as ‘Tab 1’=>$model->clients_notes

Tab 2: I render a partial view.

My issue is for tab 1, I need to maintain line breaks, any formatting (eventually it will display marked-up text), etc. Currently it would display a block of text as:

09/27/2011 this is a test note. yada yada yada. 09/28/2011 this should be on another line here.

It should be displaying it as:

09/27/2011

this is a test note. yada yada yada.

09/28/2011

this should be on another line here.

Any ideas or tips please??? I’m sure this is a simple fix, but I’ve spent several hours trying to figure this simple thing out and can’t!!!! Thank you!!!

Chris

Have you looked at the function nl2br?

Nope, but I did and that’s exactly what I was looking for. I’m new to PHP and come from .Net background, and hate asking for assistance but it was so trivial that I just couldn’t find the answer.

Thank you very much!!!!!