Jump to content

How can I replace a line feed with a br tag in a MySql sql statement from php?


SLSCoder
Go to solution Solved by Barand,

Recommended Posts

I'm creating a sql statement in php:
The value of TextField is "We chartered a \n fishing trip".

$sql = "SELECT REPLACE(TextField, '\n', '<br>') AS TextField FROM mytable WHERE ID = 2";

I've tried every combination I can think of like 2 backslashes, 3, 4 . . .
I tried using chr(92) instead of the backslash.
I can't make it work.

How can I get it to return the field (ex. TextField) with a br tag in it instead of a line feed?

Link to comment
Share on other sites

Am I missing something?
If I understand your solution clearly, you're asking me why I don't want to loop through records to fix any values that include line breaks.

My answer to that would obviously be that I think to fix the values in the query would be significantly more efficient than to loop through and fix each record after the query.

If you don't want to answer my question please just say so.

I'm beginning to think that asking questions on this forum is a bad idea.
 

Link to comment
Share on other sites

9 hours ago, SLSCoder said:

Thanks Barand but I know I can do that.
I've got a lot of records in a record set and I'd really rather not have to loop through them all to fix line feeds.

 

 

Are you outputting the lines?  Because if you are outputting these lines, then there is no need to loop through them more than you already are.

As for the REPLACE, that should work so there is something wrong with your assumption.  In some cases the field might have a '\r' or '\r\n'.  

Or you could have escaped the slash so that it is not a newline character, but rather the "\n" string.

I would suggest running SELECT HEX(TextField) AS TextField FROM mytable WHERE ID = 2 and verifying the contents of the field.

Link to comment
Share on other sites

Posted (edited)

gizmola thank you.

I don't write each record to html on the server or use in line <?php ... ?> tags.
I pass the whole thing (with more than just the recordset) to the client and write the html in Javascript.

When I look at the example record having a line feed in the database (HeidiSQL) I see \n in the text: ie: "We chartered a \n fishing trip".
No \r or \r\n exist in any records, only \n. It's a Linux server and no records are saved with \r in them.

I tried your HEX suggestion. I get long numbers but don't understand what they indicate.
The response I got for that record was this:
text:  we chartered a \n fishing trip.
hex: 7765206368617274657265642061205C6E2066697368696E6720747269702E

When I use this: $sql = "SELECT REPLACE(TextField, '\n', '<br>') AS TextField FROM mytable WHERE ID = 2";
The line feed breaks the line in php (I see in view-source) which makes me think mysql doesn't see it. Php runs it anyway and MySql ignores it.
I break sql lines in PHP all the time just so I can read the sql. Mysql ignores them.
I tried a double slash to escape it in php. It seemed to ignore that too and gave me the same result:
ie: "We chartered a \n fishing trip". That's what I see in the browser.

I changed the value in javascript val = val.replaceAll("\n", "<br>") and that didn't work either.
I see in the database: we chartered a \n fishing trip
I see in the browser: we chartered a \n fishing trip
Now I'm confused

Edited by SLSCoder
Link to comment
Share on other sites

  • Solution

It looks as though it is two separate characters and not a linefeed character (linefeed = 0A)

w  e     c  h  a  r  t  e  r  e  d     a     \  n     f  i  s  h  i  n  g     t  r  i  p  .
77 65 20 63 68 61 72 74 65 72 65 64 20 61 20 5C 6E 20 66 69 73 68 69 6E 67 20 74 72 69 70 2E 
                                             ^^ ^^

 

Link to comment
Share on other sites

You need to escape the backslash

REPLACE(TextField, '\\n', '<br>')

Example

SELECT title FROM project WHERE id = 2;
+----------------------+
| title                |
+----------------------+
| Project \n  number 2 |
+----------------------+


SELECT REPLACE(title, '\\n', '<br>') FROM project WHERE id = 2;
+-------------------------------+
| REPLACE(title, '\\n', '<br>') |
+-------------------------------+
| Project <br>  number 2        |
+-------------------------------+

Now you can worry about why your update process is writing two separate characters instead of a single linefeed.

Link to comment
Share on other sites

Barand thank you.

It looks like to read HEX I just need to recognize that every 2 numbers represents 1 character in HTML - the percent sign??
I did try using the double backslash but I'll try it again and let you know what I come up with.

Link to comment
Share on other sites

"update process is writing two separate characters": That's curious. I'll have to figure that out. I'm thinking when it's written into the db it gets escaped.
It should show up as 2 lines yes? I'll find it and fix it. Thanks.

"- the percent sign??": Sorry, I meant the HEX response looks like HTML codes without the percent sign.

dechex(ord('%'));  Thanks for that. I looked for how to do this for over 2 hours and never did find it.

Link to comment
Share on other sites

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.