Re: [PHP] MySQL field to maintain formatting
That did it thanks! V -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] MySQL field to maintain formatting
Assuming you are using a to allow your users to input their text you need to either use the nl2br (converts new lines to ) or use tags, following are short examples: print nl2br($data); or print ''; print $data print ''; You can find out more about the nl2br function at http://www.php.net/man