Replacing Tags with CSS : tidy_clean_repair « HTML « PHP






Replacing Tags with CSS

 
<?php
    $tidy = tidy_parse_file("clean.html", array("clean" => true));
    tidy_clean_repair($tidy);
    echo $tidy;
?>
  
  








Related examples in the same category