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>
<h1>
<?php
echo "Hello, World";
?>
$greeting = "Hello";
echo $greeting . ", " . "Everybody!";
echo "$greeting, Everybody!";
?>
</h1>
</body>
</html>