/ Published in: MySQL

With this snipt you could replace all the "" tags that you have in a table for php newline character.
Expand |
Embed | Plain Text
UPDATE table SET FIELD = REPLACE(FIELD, '<br />', '\n');
You need to login to post a comment.