Forum Moderators: coopster
I have a PHP script that I need debugging. Below is part of a script I have going. It bascially outputs what has been entered in the form field. Currently, it outputs a long line with no breaks. How can I add paragraph breaks after 25 words or so?
fputs($file,<font color=\"#9D0000\">Message:</font> $message\n\n");
fclose($file);
So, if prints the message from prior page that is entered via form field. It prints as one huge line of text with no breaks.
Thanks ahead.