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
You could try the MySQL REPLACE function to have the data come back from your query already formatted like this:
Example:
select replace(column_with_commas_in_strings,',','
') as new_string
from some_table;
In your case, something like:
$result = mysql_query("SELECT replace(alias,',','
') as ALIAS FROM characters WHERE namn = 'Jargon'");