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