$input3->setAttribute("value","<?php print \$_SERVER['REQUEST_URI']; ?>");
<input ... value="<?php print $_SERVER['REQUEST_URI']; ?>">
I just don't want that $lt and $gt appear on the generated html, I want my <?php and ?> back 🙁
<?php // Because the parser is wrong on this board.... $input3->setAttribute("value", '<?php print $_SERVER[\'REQUEST_URI\']; ?>');
Will that work? Otherwise, it's an issue in the class and you need to modify it so that it doesn't run [man]htmlspecialchars/man on the string.