So I have this MySQL database and a table and in the rows there a lot of "," in them, and I wish when they are output on the screen with PHP to be switched to " " instead of coma, how do I do that? I mean, this is a example, it stands like this: hello,no,thanks and instead of being output like that I would like it to be output as: hello no thanks How do I do that? Could someone do it for me? Would be very friendly. Assuming there are no CSV quoting issues: $newStr = str_replace( ',', '<br>', $string ); EDIT: After seeing your rollback, i see that you actually want to replace the , with a