Files
php_8/strings/htmlspecialchars.php
2022-05-07 17:26:05 +03:00

9 lines
166 B
PHP

<?php
$text = <<<html
<script language="JavaScript">
alert("Приветик!");
</script>
html;
echo htmlspecialchars($text);