Hello,
My problem looks like this:
I have a table in my Oracle database wich has a column where I store some formatted text (some descrition)
and I need to output this text to my Web page. I need that the output would be somehow formatted,
at least the paragraghs would be kept (like I see it in Memo Editor).
I do like this:
$description holds the value of the column returned by the query (all this string) and I output it with echo:
echo "$description";
I tried to use <pre>, but it did not give the desired output.
If someone knows something about it, please help.
Thanks.