ConFoo Montreal 2026: Call for Papers

Voting

: min(three, nine)?
(Example: nine)

The Note You're Voting On

Anonymous
15 years ago
If you want a simpler way to get around the <script> tag problem try:

<?php

$script
= $doc->createElement ('script');\
// Creating an empty text node forces <script></script>
$script->appendChild ($doc->createTextNode (''));
$head->appendChild ($script);

?>

<< Back to user notes page

To Top