<?php $title = 'Foo & Bar'; $content = '1 is < then 2'; $document = new DOMDocument(); $div = $document->appendChild($document->createElement('div')); $div->appendChild($document->createElement('h2'))->textContent = $title; $div->appendChild($document->createElement('p'))->textContent = $content; echo $document->saveHTML();
You have javascript disabled. You will not be able to edit any code.