PHP mySQL - replace some string inside string

Posted by apis17 on Stack Overflow See other posts from Stack Overflow or by apis17
Published on 2010-05-18T03:02:58Z Indexed on 2010/05/18 3:10 UTC
Read the original article Hit count: 282

Filed under:
|
|
|
|

i want to replace ALL comma , into ,<space> in all address table in my mysql table.

For example,

+----------------+----------------+
| Name           | Address        |
+----------------+----------------+
| Someone name   | A1,Street Name |
+----------------+----------------+

Into

+----------------+----------------+
| Name           | Address        |
+----------------+----------------+
| Someone name   | A1, Street Name|
+----------------+----------------+

Thanks in advance.

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql