I have this html code :
$html = "<P style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; padding: 4px;" class=MsoNormal>text</P>";
I need to remove all mso-* tag, and the result will be:
$html = "<P style="padding: 4px;" class=MsoNormal>text</P>";
How can I do with php?? Many Thanks