Voting

: eight minus three?
(Example: nine)

The Note You're Voting On

sergsokolenko at gmail dot com
18 years ago
To avoid warning message "unterminated entity reference" you may use htmlentities() for escaping supplied value:
<?php
//...
$dom->createElement('name', htmlentities($text))
//...
?>

<< Back to user notes page

To Top