mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
9 lines
166 B
PHP
9 lines
166 B
PHP
<?php
|
|
$text = <<<html
|
|
<script language="JavaScript">
|
|
alert("Приветик!");
|
|
</script>
|
|
html;
|
|
|
|
echo htmlspecialchars($text);
|