First:
update comments
set comment_content = substring (comment_content,
instr (comment_content, '
') + 5)
where comment_content like '%
%';
update comments
set comment_content = replace (comment_content, '"', '"')
where comment_content like '%href="%';
But then:
#!/usr/bin/perl -w
(
Read more... )