Hi,
I'm working on a little script that allows users to fill in a form and write in a description (it's going to a band website so the description will be a band biog).
Anyway, the way it works is that when the user inputs their description (that may be several paragraphs long), a .txt file is created that cotains the description. And sure, enough, when you go to view the band profile, an include($the_description.txt) statement is made and the description is printed onto the screen.
The trouble is, PHP seems to be ignoring all new paragraphs and line breaks that are present in the textfile.
I was really hoping that PHP would print out the text file as it is, without having to force the user to enter "[p]" every time they want a new paragraph.
Can anyone point me in the right direction here? Thanks.