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
$str = 'asdf,asdf'; $str = str_replace(',','',$str);