Hello.
I have a big problem with getting data properly to my page.
Problem description:
when i get long tekst out from database, it does not regionize my linebreaks what i have entered in add page(i dont want to manually add <br> after every sentence).
i have add, and change data forms on my page - in there it shows data correctly!
Database strukture:
CREATE TABLE teg (
teg_id int(255) NOT NULL auto_increment,
teg_nimi varchar(100) NOT NULL default '',
teg_short text NOT NULL,
teg_long text NOT NULL,
teg_date datetime NOT NULL default '0000-00-00 00:00:00',
teg_pic varchar(100) default NULL,
PRIMARY KEY (teg_id)
) TYPE=MyISAM;
Thanks in advance
Checo