<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of Appending a String in PHP</title>
</head>
<body>
<?php
$a = "Hello";
$a .= " World!";
echo $a;
?>
</body>
</html>