![]() |
mbintex 1/3/2022 |
You will need a button with some "Update"-MySQL code in DB::Exec. Look here https://www.mysqltutorial.org/mysql-string-replace-function.aspx https://www.mysqltutorial.org/mysql-update-data.aspx If you don“t need it all the time, you could do it once via PHPMyAdmin or MySQL Workbench. |
A
|
Andreas G. author 1/3/2022 |
I need it over 3000 times for different articles. search and replace the entire table for characters, |
![]() |
Sergey Kornilov admin 1/3/2022 |
You can update the whole table at once, see the provided links with examples. Nothing to do in PHPRunner, this needs to be done in phpMyAdmin or similar software. |
A
|
Andreas G. author 1/4/2022 |
UPDATE products_description SET products_description = REPLACE(products_description, "PNG", "SVG") This is just an example now! It should work in edit mode via a button |