Similar to this question How replace all spaces inside HTML elements with using preg_replace?
Except I need to do this from phpmyadmin (SQL query) for all PRE elements stored in the SQL table “jos_picmicro_content” in the field “fulltext”. All other html elements are to be left untouched.
How would I go about it?
I don’t think you have to do it in PHPMyAdmin. You could just write a PHP script with a query to get the data, than do a
forwhich replaces the stuff in them one by one, and an other query that updates your table with the new data. Run the scipt once, you can delete it afterwards. That is how I’d do it.