@hwoarang69
here is the problem is. when i echo'$features_db'; it doesnt prints the enters. so for ex it print this:
Instead of this
echo'$features_db';
Try to add this:
echo "$features_db\n";
LastMitch
Industrious Poster
4,118 posts since Mar 2012
Reputation Points: 132
Solved Threads: 334
Skill Endorsements: 45
how it is stored in mysql, Is it in one column one row, or all features are in separte record?
If it is strored using textarea (with user manually breking line in textarea) then following trick may work, no need of \n
echo nl2br($features_db);
urtrivedi
Posting Virtuoso
1,714 posts since Dec 2008
Reputation Points: 299
Solved Threads: 362
Skill Endorsements: 24
that function if finds new line in string, it renders it to html <br> tag.
urtrivedi
Posting Virtuoso
1,714 posts since Dec 2008
Reputation Points: 299
Solved Threads: 362
Skill Endorsements: 24
Question Answered as of 5 Months Ago by
urtrivedi
and
LastMitch