<?php $_POST["content"] = "<style> color:blue; </style> The rain in Spain lies mainly in the plain ..."; $dom = new DOMDocument; $dom->loadHTML($_POST["content"]); $style_tags = $dom->GetElementsByTagName('style'); foreach($style_tags as $style_tag) { $prent = $style_tag->parentNode; $prent->replaceChild($dom->createTextNode(''), $style_tag); } echo strip_tags($dom->saveHTML());
You have javascript disabled. You will not be able to edit any code.