- In the phpMyAdmin interface for your site, navigate to the correct table
- Click the SQL tab, and in the SQL query box...
- Using this code and replacing the ** with correct information, test to see if you are replacing the correct string
SELECT replace(*rowName*,'*original string*','*new string*'), *rowName* FROM `*table name*`
- if this checks out, then use this code to replace the string:
update *table name* set *rowName*= replace(*rowName*,'*original string*','*new string*');
- Check the results
Note: In the code above, the *text inside the asterisks* sometimes have ' on either side of them. replace the sample text above INCLUDING THE ASTERISKS ... being mindful of the single quotes!