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 \"\" inste
Just use str_replace
$my_output = str_replace(",", "", "no,thanks,text,text");