Jump to content

[SOLVED] need some help with line breaks..


CSmith1128

Recommended Posts

ok.. heres what I have... i am making a message system where the users can send eachother messages.

I have a reply feature so they can reply to messages received.

The problem I am having deals with line breaks.

 

- I store each message in a text file.

- When the user clicks reply, it takes the text from the text file and store it into a text area form box.

- To insert the line breaks I use \n. It shows up fine in the text area.

- Now when I send it to the script, I use $_REQUEST['message']; to retreive it.

- To debug it, I have the text displayed on the page so I know what it looks like before it is stored.

- However, it does not show the line breaks.

 

- I have tried changing the line breaks to html using <br>, however, when it is displayed in the text area, it shows <br> instead of the actual line break. So if i want to display the previous message, it shows <br> instead of the line.

 

- Does anyone know away around this so I can show the line breaks in both the text area and text file without having the user see <br>?

- Also, when the user inserts a new line in the text area when the are typing a new message it does not show up as a new line.. is there a fix for this too?

 

Thanks

 

Chris

Link to comment
Share on other sites

yeaa that works, however, in the text area it shows "br \".. I just want it to show lines in the text area instead of the actual html... this is what I am trying to put into the text area...

 

$doubleLine = "-----------------------------------\n-----------------------------------";

$line = "-----------------------------------";

$newMessageValue = "\n\n\n\n\n" . $doubleLine . "\nMessage From: " . $firstname . " " . $lastname . "\n" . $tmonth . " " . $tday . ", " . $tyear . " at " .  $thour . "\n" . $line . "\n" . nl2br($oldMessage);

 

 

with that, everything works fine and when it sends it to the script, it shows up how I want it.. so I can change the lines to the following, but then it shows up with the br \ in the text area, which i am trying to avoid if possible..

 

$doubleLine = "-----------------------------------br /-----------------------------------";

$line = "-----------------------------------";

$newMessageValue = " br / br / br / br / br /" . $doubleLine . "br /Message From: " . $firstname . " " . $lastname . "br /" . $tmonth . " " . $tday . ", " . $tyear . " at " .  $thour . "br /" . $line . "br /" . nl2br($oldMessage);

 

is there away around that?  if not i can live with it showing the br / in the text area..

 

Note:  in the code above it needs the  < and > around br \ , i just left it out because it doesnt show up when the topic is submitted, and i dont know a way around it.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.