<?php

$s = "acesta este un text";
$sir = "stiu PHP stiu HTML stiu CSS";

print 'Text 1' . " legat de " . 'text 2' . "\n"; // Text 1 legat de text 2
print ucfirst($sir) . '!!! ' . $s; // Stiu PHP stiu HTML stiu CSS!!! acesta este un text

?>