Voting

: max(six, zero)?
(Example: nine)

The Note You're Voting On

arturm at union dot com dot pl
19 years ago
To create HTML document with doctype:

<?php
$doctype
= DOMImplementation::createDocumentType("html",
"-//W3C//DTD HTML 4.01//EN",
"http://www.w3.org/TR/html4/strict.dtd");
$doc = DOMImplementation::createDocument(null, 'html', $doctype);
?>

<< Back to user notes page

To Top