gldtn
Well-known member
You can do something like that with a simple query in phpMyAdmin.
Code:UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');
How can I do the same for the signature column in xf_user_profile?
EDITED:
Figure it out:
Code:
UPDATE xf_user_profile SET signature = REPLACE(signature,'current_content','new_content');
Thanks!
Last edited: