Part for Variables finished

This commit is contained in:
Patryk Hegenberg 2022-12-10 13:01:38 +01:00
parent 750cbe7cd4
commit c70358827e

View file

@ -9,8 +9,10 @@
<body> <body>
<h1> <h1>
<?php <?php
echo "Hello, World"; $greeting = "Hello";
?> echo $greeting . ", " . "Everybody!";
echo "$greeting, Everybody!";
?>
</h1> </h1>
</body> </body>
</html> </html>