Răspunsul pentru exercițiul de la lecția Variabile este:
<?php
$text1 = "Primul text.";
$text2 = "Al doilea text.";
echo $text1;
echo $text2;
?>