I think it's an extra line of code I should include so that nothing gets replaced and all the special characters, that are user generated along with messages, show up in the forum and not get replaced or ignored.
The problem is that some users use characters like "&" instead of the word "and" when posting their messages. This makes the message and replies not to appear on the forum. You can see the message count but not the messages.
My data storage system at the moment is that of text files. Each new posting generates a new text file and a reply posting extends an existing text file.
I can see the whole message and replies in the text file but not on the swf message board.
How do I make it also show up on the swf message board?
The code used to replace is :
$Message = ereg_replace("[A-Za-z0-9 @.\/\%\'[]:\n\/\r ]", "", $Message);
$Message = str_replace("%2D", "-", $Message);