Jump to content

Line Breaks (\r\n) & MySQL


kevinkorb

Recommended Posts

When I post a string from a textbox, I then clean it for mysql...

When I output the string to an update textarea, it actually comes out \r\n instead of the line breaks.

i.e.

$_POST['myTextArea'];
$clean = mysqli_real_escape_string($_POST['myTextArea']);

mysqli_query("INSERT INTO myTable (myVal) VALUES ('$clean');");

When getting the data back out

Say I entered in..

test1
test2
test3

my textbox populates

test1\r\ntest2\r\ntest3\r\n

when I do a stripslashes on it it outputs

test1rntest2rntest3rn

How do I get the database to recognize the breaks and not literal text?  Or how do I get the data out as planned?

Thanks.
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.